diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-09-16 18:06:11 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-09-16 18:06:14 +0200 |
commit | 5c7dffe3782c18e0d47f5753a8c30a0cd1b6e352 (patch) | |
tree | 014587936dad9819fdb259fc255daa10e2d80379 /after/plugin | |
parent | 7dcd592eae886dc8edde2dc65d6e6323201a2aaf (diff) |
checkpoint
- made keybinds more logical with prefixes
- renamed user to config
- updated to-do's
- added rounded borders on floating windows
- added vim-eunuch
- added telescope-symbols
Diffstat (limited to 'after/plugin')
-rw-r--r-- | after/plugin/telescope.lua | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/after/plugin/telescope.lua b/after/plugin/telescope.lua index c0005ee..c2d32a3 100644 --- a/after/plugin/telescope.lua +++ b/after/plugin/telescope.lua @@ -24,12 +24,11 @@ require("telescope").setup({ }) local builtin = require("telescope.builtin") -map("n", " ff", builtin.find_files) -map("n", " ", builtin.buffers) -map("n", " fg", builtin.git_files) -map("n", " fw", builtin.live_grep) -map("n", "<C-p>", "<cmd>Telescope git_files<cr>", { desc = "Find git files" }) -map("n", " vh", builtin.help_tags, { desc = "Find help tags" }) +map("n", " tf", builtin.find_files) +map("n", " tb", builtin.buffers) +map("n", "<C-p>", builtin.git_files) +map("n", " tw", builtin.live_grep) +map("n", " th", builtin.help_tags, { desc = "Find help tags" }) -- symbols map("n", " tse", "<cmd>lua require'telescope.builtin'.symbols{ sources = {'emoji', 'gitmoji'} }<CR>") |