Files
dotfiles/common/.config/nvim/lua/plugins.lua
Pratik Tripathy 14bca30695 NVIM with Lazy.vim Package Manager
- Added the basic setting for functional LSP.
- Split configurations into multiple files suitable for Lazy usage.
2023-12-24 23:39:58 +05:30

16 lines
439 B
Lua

-- Keeps the plugin list that Lazy uses at one place
return {
-- From VIM
{ "tpope/vim-fugitive" },
{ "tpope/vim-surround" },
{ "tpope/vim-repeat" },
{ "tpope/vim-commentary" },
{ "tpope/vim-sensible" },
{ "rstacruz/vim-closer" },
{ "machakann/vim-highlightedyank" },
{ "airblade/vim-gitgutter" },
{ "easymotion/vim-easymotion" },
{ "preservim/nerdtree" },
-- { 'itchyny/lightline.vim' },
}