Enabled virtual lines
This commit is contained in:
parent
632929a1e0
commit
62f8ac3e1a
6
init.lua
6
init.lua
|
@ -74,6 +74,12 @@ vim.opt.scrolloff = 10
|
||||||
-- It was in the nvim-highlight-colors instructions for highlighting css colors
|
-- It was in the nvim-highlight-colors instructions for highlighting css colors
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
|
|
||||||
|
-- virtual_text enables inline error messgages
|
||||||
|
-- idk what virtual_lines does yet
|
||||||
|
vim.diagnostic.config {
|
||||||
|
virtual_lines = { current_line = true },
|
||||||
|
}
|
||||||
|
|
||||||
-- [[ Basic Keymaps ]]
|
-- [[ Basic Keymaps ]]
|
||||||
-- See `:help vim.keymap.set()`
|
-- See `:help vim.keymap.set()`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue