fix(nvim): remove deprecated plugins

This commit is contained in:
thek4n 2026-04-23 15:12:36 +03:00
parent 1663fefd6a
commit 8add479f67
2 changed files with 3 additions and 16 deletions

View File

@ -125,6 +125,9 @@ vim.g.t_EI = [[\e[1 q]]
local parsers_dir = vim.fn.stdpath("data") .. "/lazy/nvim-treesitter/parser" local parsers_dir = vim.fn.stdpath("data") .. "/lazy/nvim-treesitter/parser"
vim.opt.runtimepath:prepend(parsers_dir) vim.opt.runtimepath:prepend(parsers_dir)
-- Column
opt.cc = "80"
vim.g.netrw_banner = 0 -- hide banner vim.g.netrw_banner = 0 -- hide banner
vim.g.highlighturl_enabled = true -- highlight URLs by default vim.g.highlighturl_enabled = true -- highlight URLs by default

View File

@ -115,22 +115,6 @@ return {
}) })
end end
}, },
{
'lukas-reineke/virt-column.nvim',
lazy = false,
config = function()
require("virt-column").setup({
virtcolumn = '80'
})
end
},
{
'norcalli/nvim-colorizer.lua',
lazy = false,
config = function()
require('colorizer').setup()
end
},
{ {
"lukas-reineke/indent-blankline.nvim", "lukas-reineke/indent-blankline.nvim",
config = function() config = function()