feat(nvim): gf map

This commit is contained in:
TheK4n 2023-01-31 20:04:12 +03:00
parent da8d90e7ee
commit 41a18d9805

View File

@ -45,6 +45,10 @@ map("n", '<C-l>', vim.cmd.tabnext, opts)
map("n", '<C-h>', vim.cmd.tabprev, opts) map("n", '<C-h>', vim.cmd.tabprev, opts)
-- Open file under cursor in new tab
map("n", 'gf', '<C-w>gf')
-- Kill current buffer -- Kill current buffer
map("n", '<Leader>qq', '<cmd>bd!<CR>', opts) map("n", '<Leader>qq', '<cmd>bd!<CR>', opts)
-- Quick exit without saving -- Quick exit without saving