diff options
author | Josh Rahm <rahm@google.com> | 2023-01-18 21:27:01 +0000 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2023-01-18 21:27:01 +0000 |
commit | f319b16b8e808a7e08b7a74fe47032c0fef919ae (patch) | |
tree | 9229bbc839f45a6325ca93773eb77cad55128acb | |
parent | 1f5b9e469d8d37174d154a5f0001cfb283b31c1b (diff) | |
download | config.vim-f319b16b8e808a7e08b7a74fe47032c0fef919ae.tar.gz config.vim-f319b16b8e808a7e08b7a74fe47032c0fef919ae.tar.bz2 config.vim-f319b16b8e808a7e08b7a74fe47032c0fef919ae.zip |
remove colorschemes. Add ability to have local plugins with local-plug.vim
-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' |