mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-03-22 09:41:10 +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.isfname:append("@-@")
|
||||||
vim.opt.updatetime = 50
|
vim.opt.updatetime = 50
|
||||||
vim.opt.textwidth = 0
|
vim.opt.textwidth = 0
|
||||||
|
vim.opt.colorcolumn = "80"
|
||||||
vim.opt.formatoptions = "rqnj"
|
vim.opt.formatoptions = "rqnj"
|
||||||
vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
|
vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
|
||||||
vim.o.laststatus = 3
|
vim.o.laststatus = 3
|
||||||
|
|||||||
@@ -1,4 +1,13 @@
|
|||||||
return {
|
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",
|
"ThePrimeagen/refactoring.nvim",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
|||||||
Reference in New Issue
Block a user