1
Fork 0

A lot of neovim config updates

This commit is contained in:
Matei Adriel 2022-10-09 03:28:51 +02:00
parent d3ab72c6c8
commit 98e8510ae7
21 changed files with 874 additions and 152 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -0,0 +1,9 @@
local M = {}
function M.setup()
require("which-key").setup({
triggers = { "<leader>", "d", "y", "q", "z", "g", "c" }
})
end
return M