New cleaner nvim config. Added config for LF

This commit is contained in:
Thomas Naderer
2024-12-25 09:58:39 +01:00
parent 741e32a1ff
commit 46ae676593
10 changed files with 1345 additions and 136 deletions

View File

@@ -1,21 +1,21 @@
require("todo-comments").setup {
signs = true, -- show icons in the signs column
keywords = {
TODO = { icon = " ", color = "info" },
FIXME = { icon = " ", color = "error" },
HACK = { icon = " ", color = "warning" },
WARN = { icon = " ", color = "warning" },
NOTE = { icon = " ", color = "hint" },
},
highlight = {
before = "fg", -- highlight the keyword
keyword = "wide", -- highlight the whole keyword
after = "fg", -- highlight the message
},
search = {
command = "rg", -- ripgrep as the default search command
args = {
"--color=never", "--no-heading", "--with-filename", "--line-number", "--column"
},
},
signs = true, -- Show icons in the signs column
keywords = {
TODO = { icon = "", color = "info" },
FIXME = { icon = "", color = "error" },
HACK = { icon = "", color = "warning" },
WARN = { icon = "", color = "warning" },
NOTE = { icon = "", color = "hint" },
},
highlight = {
before = "", -- Don't highlight before the keyword
keyword = "wide", -- Highlight the keyword itself
after = "fg", -- Highlight after the keyword
},
search = {
command = "rg", -- Use ripgrep for searching
args = {
"--color=never", "--no-heading", "--with-filename", "--line-number", "--column",
},
},
}