mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-03-27 21:47:46 +01:00
nvim: cleaned up style settings to be consistent
This commit is contained in:
parent
c535cee357
commit
e81a8a8bd5
@ -77,7 +77,6 @@ vim.g.markdown_folding = 1
|
||||
vim.o.shiftwidth = 4
|
||||
vim.o.softtabstop = 4
|
||||
vim.o.textwidth = 80
|
||||
vim.o.colorcolumn = "-0"
|
||||
|
||||
-- read files correctly
|
||||
vim.filetype.add({
|
||||
|
@ -1,9 +1,7 @@
|
||||
-- display certain invisible chars
|
||||
vim.opt.list = true
|
||||
vim.opt.listchars:append "space:·"
|
||||
vim.opt.listchars:append "eol:"
|
||||
|
||||
-- set signs for various uses
|
||||
Space_sign = "·"
|
||||
Return_sign = ""
|
||||
|
||||
Error_sign = " "
|
||||
Warn_sign = " "
|
||||
Info_sign = " "
|
||||
@ -111,3 +109,12 @@ vim.fn.sign_define(
|
||||
"DiagnosticSignHint",
|
||||
{ texthl = "DiagnosticSignHint", text = Hint_sign, numhl = "DiagnosticSignHint" }
|
||||
)
|
||||
|
||||
-- enable colorcolumn when textwidth is set
|
||||
vim.o.colorcolumn = "-0"
|
||||
vim.o.cursorline = true
|
||||
|
||||
-- display certain invisible chars
|
||||
vim.o.list = true
|
||||
vim.opt.listchars:append("space:" .. Space_sign)
|
||||
vim.opt.listchars:append("eol:" .. Return_sign)
|
||||
|
Loading…
x
Reference in New Issue
Block a user