diff options
-rw-r--r-- | init.vim | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -9,11 +9,17 @@ endif call plug#begin() +if filereadable(printf('%s/.config/nvim/local-plug.vim', $HOME)) + exec "source " . printf('%s/.config/nvim/local-plug.vim', $HOME) +endif + Plug 'dylnmc/synstack.vim' Plug 'folke/trouble.nvim' + Plug 'google/vim-codefmt' Plug 'google/vim-glaive' Plug 'google/vim-maktaba' + Plug 'hrsh7th/cmp-buffer' Plug 'hrsh7th/cmp-nvim-lsp' Plug 'hrsh7th/cmp-nvim-lua' @@ -21,11 +27,11 @@ Plug 'hrsh7th/cmp-path' Plug 'hrsh7th/cmp-vsnip' Plug 'hrsh7th/nvim-cmp' Plug 'hrsh7th/vim-vsnip' + Plug 'kyazdani42/nvim-web-devicons' Plug 'neovim/nvim-lspconfig' Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} Plug 'onsails/lspkind.nvim' -Plug 'flazz/vim-colorschemes' Plug 'nvim-tree/nvim-tree.lua' Plug 'vim-airline/vim-airline' |