feat: add quick file switcher

This commit is contained in:
Fey Naomi Schrewe 2024-09-09 20:16:57 +02:00
parent fd7f8b2ed4
commit 023665dda0
2 changed files with 12 additions and 0 deletions

View File

@ -37,6 +37,7 @@
"nvim-treesitter-endwise": { "branch": "master", "commit": "8b34305ffc28bd75a22f5a0a9928ee726a85c9a6" },
"nvim-ts-autotag": { "branch": "main", "commit": "e239a560f338be31337e7abc3ee42515daf23f5e" },
"nvim-web-devicons": { "branch": "master", "commit": "9793801f974bba70e4ac5d7eae6c4f5659993d8e" },
"other.nvim": { "branch": "main", "commit": "252cc279eb3d76685ef48aaeced1c3cf9793581f" },
"plenary.nvim": { "branch": "master", "commit": "ec289423a1693aeae6cd0d503bac2856af74edaa" },
"project.nvim": { "branch": "main", "commit": "8c6bad7d22eef1b71144b401c9f74ed01526a4fb" },
"rose-pine": { "branch": "main", "commit": "8b1fd252255a7f2c41b4192a787ab62660b29f72" },

View File

@ -26,5 +26,16 @@ return {
init = function()
vim.g.loaded_matchparen = 1
end,
},
{
'rgroli/other.nvim',
config = {
mappings = {
'angular'
}
},
keys = {
{ '<leader>s', '<cmd>Other<CR>', desc = 'Open other file' }
}
}
}