Put configuration elements in different files
This commit is contained in:
parent
d6a419cfdd
commit
0fcc53b2cf
6 changed files with 171 additions and 170 deletions
24
conf/nvim/lua/plugins.lua
Normal file
24
conf/nvim/lua/plugins.lua
Normal file
|
@ -0,0 +1,24 @@
|
|||
--Plugins
|
||||
local paq = require("paq")
|
||||
paq {
|
||||
"savq/paq-nvim";
|
||||
-- vim airline and vim airline theme
|
||||
'vim-airline/vim-airline';
|
||||
-- vim airline and vim airline theme
|
||||
'vim-airline/vim-airline-themes';
|
||||
'w0rp/ale';
|
||||
-- Base16 theme
|
||||
'chriskempson/base16-vim';
|
||||
|
||||
-- NERDTree file manager
|
||||
'scrooloose/nerdtree';
|
||||
|
||||
-- Vim fugitive
|
||||
'tpope/vim-fugitive';
|
||||
'tpope/vim-surround';
|
||||
'sheerun/vim-polyglot';
|
||||
{'Shougo/deoplete.nvim', run = vim.fn['remote#host#UpdateRemotePlugins']};
|
||||
'zchee/deoplete-jedi';
|
||||
-- Grammalecte
|
||||
'dpelle/vim-Grammalecte';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue