diff options
author | listout <listout@protonmail.com> | 2022-09-16 16:46:51 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-09-16 16:46:51 +0530 |
commit | 3ab03ad15ccf64ca88a5ae6d6cd5f786c1d9c86d (patch) | |
tree | 24d3fd4f1e1ba7aaef6376e1001ae7b1855abec2 | |
parent | 1d0f6e25e091ee656511a5cb27cfdd58e6df6ea4 (diff) |
nvim: plugins: New plugins added
- Moonlight color scheme
- friendly-snippets
- nvim-colorizer
- nvim-autopairs
Signed-off-by: listout <listout@protonmail.com>
-rw-r--r-- | lua/plugins/plugins.lua | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lua/plugins/plugins.lua b/lua/plugins/plugins.lua index 82f25f7..1cd1e7f 100644 --- a/lua/plugins/plugins.lua +++ b/lua/plugins/plugins.lua @@ -35,6 +35,7 @@ return packer.startup(function(use) -- Color scheme use 'folke/tokyonight.nvim' + use 'shaunsingh/moonlight.nvim' -- Completion and language server use {'neovim/nvim-lspconfig'} -- Collection of configurations for built-in LSP client @@ -47,12 +48,16 @@ return packer.startup(function(use) use {'hrsh7th/cmp-nvim-lua'} use {'saadparwaiz1/cmp_luasnip'} -- Snippets source for nvim-cmp use {'L3MON4D3/LuaSnip'} -- Snippets plugin + use {"rafamadriz/friendly-snippets"} -- Show color under hex codes - use {'ap/vim-css-color'} + use {'norcalli/nvim-colorizer.lua'} -- Productivity plugins - use {'jiangmiao/auto-pairs'} -- Auto add matching brackets + use { + "windwp/nvim-autopairs", + config = function() require("nvim-autopairs").setup {} end + } use {'preservim/nerdcommenter'} -- Easy commenting use {'dhruvasagar/vim-table-mode', ft = {'markdown', 'markdown.pandoc'} } -- Markdown easy tables use {'junegunn/fzf', run = ":call fzf#install()" } |