configure lsp, completion and some additional colors

This commit is contained in:
2024-06-01 14:27:39 +03:00
commit 3d4f3d4081
13 changed files with 342 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
local builtin = require('telescope.builtin')
vim.keymap.set('n', '<leader>pf', builtin.find_files, {})
vim.keymap.set('n', '<leader>ps', function()
builtin.grep_string({ search = vim.fn.input("Grep > ") })
end)
vim.keymap.set('n', '<C-p>', builtin.git_files, {})