chore(config): add nvim comment

main
sudo pacman -Syu 2023-02-28 16:00:43 +07:00
parent 43afd68cc2
commit 8c96120627
1 changed files with 10 additions and 1 deletions

View File

@ -52,11 +52,12 @@ vim.g.copilot_filetypes = {
["*"] = false,
go = true,
json = true,
lua = true,
make = true,
proto = true,
python = true,
yaml = true,
lua = true,
toml = true,
}
-- Use fzf
@ -124,6 +125,14 @@ require("packer").startup(function()
-- https://github.com/RRethy/vim-illuminate
use("RRethy/vim-illuminate")
-- https://github.com/terrortylor/nvim-comment
use({
"terrortylor/nvim-comment",
config = function()
require("nvim_comment").setup()
end,
})
-- Colorschemes
-- https://github.com/cocopon/iceberg.vim
use("cocopon/iceberg.vim")