commit cd390a5cc6fdf519ae8f64949021b075dd80c049 Author: not Date: Thu Jun 16 00:09:03 2022 -0400 Initial Home page diff --git a/Home.md b/Home.md new file mode 100644 index 0000000..7d9fc30 --- /dev/null +++ b/Home.md @@ -0,0 +1,68 @@ +## Supported plugins + +- _**[barbar.nvim](https://github.com/romgrk/barbar.nvim)**_ +- _**[bufferline.nvim](https://github.com/akinsho/bufferline.nvim)**_ + + ```lua + use({ + 'akinsho/bufferline.nvim', + event = 'ColorScheme', + config = function() + local highlights = require('rose-pine.plugins.bufferline') + require('bufferline').setup({ highlights = highlights }) + end + }) + ``` + +- _**[diagnostics](https://neovim.io/doc/user/lsp.html)**_ +- _**[galaxyline.nvim fork](https://github.com/NTBBloodbath/galaxyline.nvim)**_ + + ```lua + -- Access colors via galaxyline's recommended naming + -- E.g. `highlights.blue`, `highlights.yellow` + local highlights = require('rose-pine.plugins.galaxyline') + ``` + + +- _**[gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim)**_ +- _**[indent-blankline.nvim](https://github.com/lukas-reineke/indent-blankline.nvim)**_ +- _**[lspsaga.nvim](https://github.com/tami5/lspsaga.nvim)**_ +- _**[lualine.nvim](https://github.com/nvim-lualine/lualine.nvim)**_ + + ```lua + use({ + 'nvim-lualine/lualine.nvim', + event = 'ColorScheme', + config = function() + require('lualine').setup({ + options = { + --- @usage 'rose-pine' | 'rose-pine-alt' + theme = 'rose-pine' + } + }) + end + }) + ``` + +- _**[modes.nvim](https://github.com/mvllow/modes.nvim)**_ +- _**[neogit](https://github.com/TimUntersberger/neogit)**_ +- _**[neorg](https://github.com/nvim-neorg/neorg)**_ +- _**[nvim-notify](https://github.com/rcarriga/nvim-notify)**_ +- _**[nvim-tree.lua](https://github.com/kyazdani42/nvim-tree.lua)**_ +- _**[nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)**_ +- _**[pounce.nvim](https://github.com/rlane/pounce.nvim)**_ +- _**[telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)**_ +- _**[toggleterm.nvim](https://github.com/akinsho/toggleterm.nvim)**_ + + ```lua + use({ + 'akinsho/toggleterm.nvim', + event = 'ColorScheme', + config = function() + local highlights = require('rose-pine.plugins.toggleterm') + require('toggleterm').setup({ highlights = highlights }) + end + }) + ``` + +- _**[which-key.nvim](https://github.com/folke/which-key.nvim)**_ \ No newline at end of file