moved config files to single location

This commit is contained in:
Kulvir Singh
2024-05-14 14:28:09 +05:30
parent 4352fa101b
commit a64b8177aa
100 changed files with 573 additions and 638 deletions

View File

@@ -0,0 +1,13 @@
local builtin = require('telescope.builtin')
require('telescope').setup({
defaults = {
file_ignore_patterns = { ".git/", "node_modules" },
layout_strategy = 'horizontal',
prompt_prefix = '🔭 ',
selection_caret = '',
initial_mode = 'insert',
},
})
vim.keymap.set('n', '<leader>f', builtin.find_files, {})
vim.keymap.set('n', '<C-p>', builtin.git_files, {})