Migrate to lazy.nvim with more lua config
This commit is contained in:
parent
d7aa29354c
commit
be6559c1b6
28 changed files with 823 additions and 445 deletions
64
lua/plugins/init.lua
Normal file
64
lua/plugins/init.lua
Normal file
|
@ -0,0 +1,64 @@
|
|||
return {
|
||||
"folke/which-key.nvim",
|
||||
'pbrisbin/vim-mkdir',
|
||||
'fladson/vim-kitty',
|
||||
|
||||
'tpope/vim-repeat',
|
||||
'tpope/vim-surround',
|
||||
'tpope/vim-characterize',
|
||||
'tpope/vim-eunuch',
|
||||
'tpope/vim-commentary',
|
||||
'tpope/vim-sleuth',
|
||||
|
||||
-- ic / ac
|
||||
{'glts/vim-textobj-comment',
|
||||
dependencies = { 'kana/vim-textobj-user' }
|
||||
},
|
||||
-- ii / ai
|
||||
'michaeljsmith/vim-indent-object',
|
||||
'airblade/vim-gitgutter',
|
||||
|
||||
'neovim/nvim-lspconfig',
|
||||
|
||||
{ 'nvim-telescope/telescope.nvim',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' }
|
||||
},
|
||||
|
||||
{ 'ray-x/lsp_signature.nvim',
|
||||
config = function()
|
||||
require('lsp_signature').setup({})
|
||||
end
|
||||
},
|
||||
'nvim-lua/lsp-status.nvim',
|
||||
'kyazdani42/nvim-web-devicons',
|
||||
'folke/trouble.nvim',
|
||||
'folke/lsp-colors.nvim',
|
||||
'nvim-lua/popup.nvim',
|
||||
|
||||
'zbirenbaum/copilot.lua',
|
||||
{'zbirenbaum/copilot-cmp',
|
||||
dependencies = { "hrsh7th/nvim-cmp" },
|
||||
},
|
||||
'junegunn/vim-easy-align',
|
||||
'machakann/vim-highlightedyank',
|
||||
'vim-airline/vim-airline',
|
||||
'lukas-reineke/indent-blankline.nvim',
|
||||
'lambdalisue/suda.vim',
|
||||
-- git
|
||||
'lambdalisue/gina.vim',
|
||||
'gregsexton/gitv',
|
||||
'gisphm/vim-gitignore',
|
||||
'sjl/splice.vim',
|
||||
'jamessan/vim-gnupg',
|
||||
|
||||
'lervag/vimtex',
|
||||
'ledger/vim-ledger',
|
||||
'anekos/hledger-vim',
|
||||
|
||||
'vim-pandoc/vim-pandoc',
|
||||
'vim-pandoc/vim-pandoc-syntax',
|
||||
'isobit/vim-caddyfile',
|
||||
'GEverding/vim-hocon',
|
||||
'nfnty/vim-nftables',
|
||||
}
|
||||
-- 'powerman/vim-plugin-AnsiEsc',
|
Loading…
Add table
Add a link
Reference in a new issue