1
0
Fork 0

QOL changes

This commit is contained in:
Luca Bilke 2022-12-20 18:14:32 +01:00
commit 3ccba29394
3 changed files with 4 additions and 1 deletions
.config/nvim/lua

View file

@ -35,6 +35,7 @@ o.relativenumber = true
o.laststatus = 3 o.laststatus = 3
o.modeline = true o.modeline = true
o.modelines = 3 o.modelines = 3
o.listchars = "eol:$,tab:>-,trail:~,extends:>,precedes:<"
g.Illuminate_ftblacklist = { 'alpha', 'NvimTree' } g.Illuminate_ftblacklist = { 'alpha', 'NvimTree' }
g.mapleader = ' ' g.mapleader = ' '

View file

@ -13,7 +13,8 @@ autopairs.setup({
}, },
fast_wrap = { fast_wrap = {
map = "<M-e>", map = "<M-e>",
chars = { "{", "[", "(", '"', "'" }, chars = { "{", "[", "("},
-- chars = { "{", "[", "(", '"', "'" },
pattern = string.gsub([[ [%'%"%)%>%]%)%}%,] ]], "%s+", ""), pattern = string.gsub([[ [%'%"%)%>%]%)%}%,] ]], "%s+", ""),
offset = 0, offset = 0,
end_key = "$", end_key = "$",

View file

@ -4,6 +4,7 @@ if not status_ok then
end end
todo_comments.setup({ todo_comments.setup({
highlight = { highlight = {
multiline = false,
comments_only = false comments_only = false
} }
}) })