indent chunk

This commit is contained in:
huyjaky
2025-08-23 15:30:15 +07:00
parent c14541a752
commit 44d2f8999a
6 changed files with 35 additions and 15 deletions

View File

@@ -1,3 +1,4 @@
-- Some commands that I want to execute in specific timing
vim.api.nvim_create_augroup("disable_comment_newline", { clear = true })
vim.api.nvim_create_augroup("auto_wrap", { clear = true })
@@ -6,11 +7,6 @@ vim.api.nvim_create_augroup("clear_last_search", { clear = true })
vim.keymap.set("v", "K", "<Nop>", { silent = true })
-- NOTE: Set colors for hightlights for similar words
-- vim.api.nvim_set_hl(0, "LspReferenceRead", { fg = "#FF0000" })
-- vim.api.nvim_set_hl(0, "LspReferenceWrite", { fg = "#FF0000" })
-- vim.api.nvim_set_hl(0, "LspReferenceText", { fg = "#FF0000" })
vim.api.nvim_create_autocmd("BufEnter", {
desc = "Disable auto insert comment newline",
group = "disable_comment_newline",