diff options
Diffstat (limited to 'nvim/lua')
| -rw-r--r-- | nvim/lua/config/lazy.lua | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/nvim/lua/config/lazy.lua b/nvim/lua/config/lazy.lua index 0ec7277..7befc5c 100644 --- a/nvim/lua/config/lazy.lua +++ b/nvim/lua/config/lazy.lua @@ -60,7 +60,19 @@ require("lazy").setup({ { "prettier/vim-prettier" }, { "neovim/nvim-lspconfig" }, { "b0o/schemastore.nvim" }, - + { + "nvim-mini/mini.files", + branch = "main", + dependencies = { "nvim-mini/mini.icons" }, + config = function() + require('mini.files').setup({ + mappings = { + close = '<leader>e', + go_in_plus = '<CR>', + } + }) + end, + }, require("config.blink-cmp"), -- when hitting Enter between brackets, create newline between with tab: -- { |
