28 lines
717 B
Lua
28 lines
717 B
Lua
--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';
|
|
|
|
-- need to install g++ package on Debian
|
|
-- for tree sitter plugins
|
|
'nvim-treesitter/nvim-treesitter'
|
|
}
|