Update plugins + add github copilot
This commit is contained in:
parent
496f407ddd
commit
414002de7e
2 changed files with 11 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
function configure_packages()
|
||||
call_with_helpers(require('plugins.lspconfig').init)
|
||||
call_with_helpers(require('plugins.compe').init)
|
||||
call_with_helpers(require('plugins.nvim-tree').init)
|
||||
call_with_helpers(require('plugins.nvim-treesitter').init)
|
||||
call_with_helpers(require('plugins.nvim-web-devicons').init)
|
||||
call_with_helpers(require('plugins.nvim-autopairs').init)
|
||||
|
@ -47,7 +48,7 @@ function install_packages()
|
|||
|
||||
-- Syntax
|
||||
use 'moll/vim-node'
|
||||
use 'zinit-zsh/zplugin-vim-syntax'
|
||||
-- use 'zinit-zsh/zplugin-vim-syntax' -- NOT WORKING
|
||||
use 'editorconfig/editorconfig-vim'
|
||||
use 'chrisbra/csv.vim'
|
||||
use 'npxbr/glow.nvim'
|
||||
|
@ -117,6 +118,7 @@ function install_packages()
|
|||
use 'ludovicchabant/vim-gutentags'
|
||||
|
||||
-- General Plugins
|
||||
use 'github/copilot' -- Copilot is a vim plugin that helps you to create your own vim plugins.
|
||||
use 'rcarriga/nvim-notify' -- fancy notification
|
||||
use 'mfussenegger/nvim-dap' -- debugger
|
||||
use 'numtostr/FTerm.nvim' -- Floating terminal
|
||||
|
@ -142,4 +144,4 @@ end
|
|||
|
||||
return {
|
||||
init = init
|
||||
}
|
||||
}
|
||||
|
|
7
configs/nvim/lua/plugins/nvim-tree.lua
Normal file
7
configs/nvim/lua/plugins/nvim-tree.lua
Normal file
|
@ -0,0 +1,7 @@
|
|||
local function init()
|
||||
require'nvim-tree'.setup {}
|
||||
end
|
||||
|
||||
return {
|
||||
init = init
|
||||
}
|
Loading…
Reference in a new issue