aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/lazy
diff options
context:
space:
mode:
Diffstat (limited to 'vim/lazy')
-rw-r--r--vim/lazy/lazy.lua5
-rw-r--r--vim/lazy/plugin/telescope.lua2
2 files changed, 5 insertions, 2 deletions
diff --git a/vim/lazy/lazy.lua b/vim/lazy/lazy.lua
index 47a0380..3925c36 100644
--- a/vim/lazy/lazy.lua
+++ b/vim/lazy/lazy.lua
@@ -197,7 +197,10 @@ require('lazy').setup({
197 }, 197 },
198 198
199 -- For beancount 199 -- For beancount
200 'nathangrigg/vim-beancount', 200 {
201 'nathangrigg/vim-beancount',
202 ft = { "beancount" },
203 },
201 204
202 -- NOTE: This is where your plugins related to LSP can be installed. 205 -- NOTE: This is where your plugins related to LSP can be installed.
203 -- The configuration is done below. Search for lspconfig to find it below. 206 -- The configuration is done below. Search for lspconfig to find it below.
diff --git a/vim/lazy/plugin/telescope.lua b/vim/lazy/plugin/telescope.lua
index f8947a2..0b4bbfc 100644
--- a/vim/lazy/plugin/telescope.lua
+++ b/vim/lazy/plugin/telescope.lua
@@ -71,7 +71,7 @@ end, { desc = '[/] Fuzzily search in current buffer' })
71 71
72-- For neovim config files 72-- For neovim config files
73vim.keymap.set('n', '<leader>sn', function() 73vim.keymap.set('n', '<leader>sn', function()
74 require('telescope.builtin').find_files { 74 require('telescope.builtin').find_files {
75 cwd = vim.fn.stdpath 'config', 75 cwd = vim.fn.stdpath 'config',
76 follow = true 76 follow = true
77 } 77 }