30 lines
615 B
Lua
30 lines
615 B
Lua
-- Plugins
|
|
require "paq" {
|
|
"savq/paq-nvim";
|
|
|
|
-- status bar
|
|
'nvim-lualine/lualine.nvim';
|
|
|
|
-- Base16 theme
|
|
'RRethy/nvim-base16';
|
|
|
|
-- NERDTree file manager
|
|
'scrooloose/nerdtree';
|
|
'lewis6991/gitsigns.nvim';
|
|
|
|
|
|
-- need to install g++ package on Debian
|
|
-- for tree sitter plugins
|
|
'nvim-treesitter/nvim-treesitter';
|
|
|
|
-- LSP installer
|
|
'neovim/nvim-lspconfig';
|
|
'williamboman/nvim-lsp-installer';
|
|
|
|
-- autocompletion plugin
|
|
'hrsh7th/nvim-cmp';
|
|
'hrsh7th/cmp-nvim-lsp';
|
|
|
|
-- vim lint when it is not possible withlsp
|
|
'mfussenegger/nvim-lint';
|
|
}
|