Enabled virtual lines

This commit is contained in:
Diego Miguel M. Villamil 2025-04-28 00:39:20 +08:00
parent 632929a1e0
commit 62f8ac3e1a
1 changed files with 6 additions and 0 deletions

View File

@ -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()`