summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlistout <listout@protonmail.com>2022-12-19 20:03:18 +0530
committerlistout <listout@protonmail.com>2022-12-19 20:03:18 +0530
commit02194c0c4f157da947b4f339b38c8a3a627cf6d8 (patch)
tree083a276ce56b0c6d9f7e832818ebb4cd529785e0
parent4ae325cf937682f626c80bfabd219357cff2fad1 (diff)
nvim: keymaps: removing FZF default command
Signed-off-by: listout <listout@protonmail.com>
-rw-r--r--lua/core/keymaps.lua8
1 files changed, 0 insertions, 8 deletions
diff --git a/lua/core/keymaps.lua b/lua/core/keymaps.lua
index 9379955..0736653 100644
--- a/lua/core/keymaps.lua
+++ b/lua/core/keymaps.lua
@@ -40,13 +40,5 @@ map('t', 'C-w', '<C-\\><C-n><C-w>')
map('n', '<leader>b', ':Buffers<CR>');
map('n', '<leader>n', ':Files<CR>');
-vim.cmd([[
- let $FZF_DEFAULT_COMMAND = "find * -path
- \ '*/\.*' -prune -o -path 'node_modules/**'
- \ -prune -o -path 'target/**' -prune -o -path
- \'dist/**' -prune -o -type f -print -o -type
- \ l -print 2> /dev/null"
-]])
-
map('n', '<silent><leader>l', ':Buffers<CR>')
map('n', '<leader>e', ':NvimTreeToggle<CR>')