diff options
| author | Baitinq <[email protected]> | 2024-03-17 23:32:21 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2024-03-17 23:32:21 +0100 |
| commit | 0b453a26b0edc7c56a5cd8b546f1c3e5d49e1d20 (patch) | |
| tree | a88fe314ef6d7e4d81eba2f544cdabe3161e2bcb /dotfiles/nvim | |
| parent | Dotfiles: Nvim: Priorize local lsp install (diff) | |
| download | nixos-config-0b453a26b0edc7c56a5cd8b546f1c3e5d49e1d20.tar.gz nixos-config-0b453a26b0edc7c56a5cd8b546f1c3e5d49e1d20.tar.bz2 nixos-config-0b453a26b0edc7c56a5cd8b546f1c3e5d49e1d20.zip | |
Dotfiles: Nvim: Install copilot
Diffstat (limited to 'dotfiles/nvim')
| -rw-r--r-- | dotfiles/nvim/init.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dotfiles/nvim/init.lua b/dotfiles/nvim/init.lua index 057cfcd..173f214 100644 --- a/dotfiles/nvim/init.lua +++ b/dotfiles/nvim/init.lua @@ -231,12 +231,13 @@ require('lazy').setup({ -- NOTE: Plugins can also be added by using a table, -- with the first argument being the link and the following -- keys can be used to configure plugin behavior/loading/etc. + 'direnv/direnv.vim', + 'github/copilot.vim', -- -- Use `opts = {}` to force a plugin to be loaded. -- -- This is equivalent to: -- require('Comment').setup({}) - 'direnv/direnv.vim', -- "gc" to comment visual regions/lines { 'numToStr/Comment.nvim', opts = {} }, |