feat: missing nvim package config files

This commit is contained in:
AngeD 2022-09-26 10:44:08 +02:00
parent ad1684160f
commit 52f767326a
4 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1 @@
vim.cmd("packadd dirdiff")

View File

@ -0,0 +1,3 @@
vim.cmd("packadd easy-align")
vim.keymap.set("n", "ga", "<Plug>(EasyAlign)")
vim.keymap.set("x", "ga", "<Plug>(EasyAlign)")

View File

@ -0,0 +1,5 @@
vim.cmd("packadd treesitter")
require"nvim-treesitter.configs".setup {
auto_install = true,
highlight = {enable = true},
}

View File

@ -0,0 +1,2 @@
vim.cmd("packadd which-key")
require'which-key'.setup{}