1
Fork 0

feat: working devicons and stuff

This commit is contained in:
Matei Adriel 2022-02-07 13:27:36 +02:00
parent 1b15804fea
commit 0de4c4c3be
4 changed files with 8 additions and 8 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -26,10 +26,10 @@ local bindings = {
function M.setup()
for action, keybind in pairs(bindings) do
-- Maps the keybind to the action
mapSilent('n', keybind, "<cmd>lua require('telescope.builtint')." .. action .. "()<CR>")
mapSilent('n', keybind, "<cmd>lua require('telescope.builtin')." .. action .. "()<CR>")
end
require("telescope").setup {defaults = {mappings = {i = {["<C-h>"] = "which-key"}}}}
require("telescope").setup {defaults = {mappings = {i = {["<C-h>"] = "which_key"}}}}
end
return M