New cleaner nvim config. Added config for LF
This commit is contained in:
@@ -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",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user