mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-03-22 01:39:54 +01:00
look at linters. inline diagnostic added. colorline added
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
require'tiny-inline-diagnostic'.setup {
|
||||
|
||||
}
|
||||
@@ -18,6 +18,7 @@ vim.opt.signcolumn = "yes:1"
|
||||
vim.opt.isfname:append("@-@")
|
||||
vim.opt.updatetime = 50
|
||||
vim.opt.textwidth = 0
|
||||
vim.opt.colorcolumn = "80"
|
||||
vim.opt.formatoptions = "rqnj"
|
||||
vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
|
||||
vim.o.laststatus = 3
|
||||
|
||||
@@ -1,4 +1,13 @@
|
||||
return {
|
||||
{
|
||||
"rachartier/tiny-inline-diagnostic.nvim",
|
||||
event = "VeryLazy",
|
||||
priority = 1000,
|
||||
config = function()
|
||||
require("tiny-inline-diagnostic").setup()
|
||||
vim.diagnostic.config({ virtual_text = false })
|
||||
end,
|
||||
},
|
||||
{
|
||||
"ThePrimeagen/refactoring.nvim",
|
||||
dependencies = {
|
||||
|
||||
Reference in New Issue
Block a user