]> git.armaanb.net Git - dotfiles.git/commitdiff
nvim: jump to files with gf
authorArmaan Bhojwani <me@armaanb.net>
Sun, 21 Nov 2021 23:42:39 +0000 (18:42 -0500)
committerArmaan Bhojwani <me@armaanb.net>
Sun, 21 Nov 2021 23:42:39 +0000 (18:42 -0500)
.config/nvim/init.lua

index df15651585750d58c4c3eb20d98534ec7b2a4b23..bcf75366046b223ccb9325dabc2725f3f055d2fe 100644 (file)
@@ -93,3 +93,7 @@ for _, server in ipairs(servers) do
 end
 
 vim.opt.signcolumn = 'no'
 end
 
 vim.opt.signcolumn = 'no'
+
+-- Jump to files with gf
+vim.opt.hidden = true
+vim.opt.path = vim.opt.path + '**'