diff options
author | listout <listout@protonmail.com> | 2022-10-08 12:30:02 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-10-08 12:30:02 +0530 |
commit | e07a51673b261b44d78f7c329e6c6015ecb478ba (patch) | |
tree | 66f7948192b4fc9269f45902520cbd84a111a8b3 /lua/plugins | |
parent | 181f90b36ca4f78422135dbc1d5db038704978a9 (diff) |
nvim: new pluging for per-project configuration and catppuccin color scheme
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to 'lua/plugins')
-rw-r--r-- | lua/plugins/plugins.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/plugins/plugins.lua b/lua/plugins/plugins.lua index 1cd1e7f..2ca10c3 100644 --- a/lua/plugins/plugins.lua +++ b/lua/plugins/plugins.lua @@ -36,6 +36,7 @@ return packer.startup(function(use) -- Color scheme use 'folke/tokyonight.nvim' use 'shaunsingh/moonlight.nvim' + use 'catppuccin/nvim' -- Completion and language server use {'neovim/nvim-lspconfig'} -- Collection of configurations for built-in LSP client @@ -79,7 +80,7 @@ return packer.startup(function(use) use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate' } -- Better per project settings - use { 'windwp/nvim-projectconfig' } + use { 'jenterkin/vim-autosource' } -- Automatically set up your configuration after cloning packer.nvim -- Put this at the end after all plugins |