This commit is contained in:
2026-04-28 20:15:54 +02:00
parent 4c2f8f17d3
commit ee4515da26
3 changed files with 4 additions and 11 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
require("colorizer").setup {
user_default_options = {
mode = "virtualtext",
virtualtext = "",
virtualtext = "",
css = true,
tailwind = true,
sass = { enable = true, parsers = { "css" } },
+3 -4
View File
@@ -13,14 +13,14 @@ vim.opt.wrap = true
vim.opt.linebreak = true
vim.opt.swapfile = false
vim.opt.backup = false
vim.opt.undodir = vim.fn.stdpath('data') .. '/undodir'
vim.opt.undodir = vim.fn.stdpath "data" .. "/undodir"
vim.opt.undofile = true
vim.opt.hlsearch = false
vim.opt.incsearch = true
vim.opt.termguicolors = true
vim.opt.scrolloff = 8
vim.opt.signcolumn = "yes:1"
vim.opt.isfname:append("@-@")
vim.opt.isfname:append "@-@"
vim.opt.updatetime = 50
vim.opt.colorcolumn = "80"
vim.opt.textwidth = 80
@@ -34,7 +34,6 @@ vim.o.ignorecase = true
vim.o.smartcase = true
vim.o.mouse = "a"
vim.o.number = true
vim.o.termguicolors = true
vim.o.numberwidth = 3
vim.o.ruler = false
vim.o.showmode = false
@@ -52,6 +51,6 @@ local sep = is_windows and "\\" or "/"
local delim = is_windows and ";" or ":"
vim.env.PATH = table.concat({ vim.fn.stdpath "data", "mason", "bin" }, sep) .. delim .. vim.env.PATH
vim.api.nvim_set_hl( 0, "Cursor", { reverse = true })
vim.api.nvim_set_hl(0, "Cursor", { reverse = true })
vim.g.tpipeline_restore = 1
-6
View File
@@ -190,12 +190,6 @@ return {
vim.g.minimal_italic_comments = true
end,
},
{
"ThePrimeagen/refactoring.nvim",
config = function()
require "config.format.refactoring"
end,
},
{
"Yazeed1s/minimal.nvim",
config = function()