diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-04 21:53:48 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-04 21:53:48 +0100 |
| commit | 6cb3a2cb65ff29d51068a2561936109dc7d654e5 (patch) | |
| tree | b4c2ebedd28e17b5653e0387556550a4ee7cf26f /config/nvim/lua/plugins.lua | |
| parent | 28a4be3558b7950191a9110c40081f06c6fb77c5 (diff) | |
Replace brain with nota.nvim
Diffstat (limited to 'config/nvim/lua/plugins.lua')
| -rw-r--r-- | config/nvim/lua/plugins.lua | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index 20cb89e..24f77b5 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -46,6 +46,7 @@ require('lazy').setup({ -- Syntaxes 'ARM9/snes-syntax-vim', 'https://git.sr.ht/~torresjrjr/gemini.vim', + { "folke/neodev.nvim", opts = {} }, -- Debugging 'mfussenegger/nvim-dap', @@ -58,6 +59,10 @@ require('lazy').setup({ 'rstacruz/vim-closer', 'michaeljsmith/vim-indent-object', 'Pocco81/auto-save.nvim', + { + "danymat/neogen", + config = true + }, -- Treesitter 'nvim-treesitter/nvim-treesitter', @@ -70,5 +75,8 @@ require('lazy').setup({ -- Tools 'vim-scripts/LargeFile', 'tpope/vim-fugitive', - 'milkypostman/vim-togglelist' + 'milkypostman/vim-togglelist', + + -- Notes + { dir = '~/projects/plugins/nota.nvim' } }) |