Circle.
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
require("colorizer").setup {
|
require("colorizer").setup {
|
||||||
user_default_options = {
|
user_default_options = {
|
||||||
mode = "virtualtext",
|
mode = "virtualtext",
|
||||||
virtualtext = "■",
|
virtualtext = "●",
|
||||||
css = true,
|
css = true,
|
||||||
tailwind = true,
|
tailwind = true,
|
||||||
sass = { enable = true, parsers = { "css" } },
|
sass = { enable = true, parsers = { "css" } },
|
||||||
|
|||||||
+3
-4
@@ -13,14 +13,14 @@ vim.opt.wrap = true
|
|||||||
vim.opt.linebreak = true
|
vim.opt.linebreak = true
|
||||||
vim.opt.swapfile = false
|
vim.opt.swapfile = false
|
||||||
vim.opt.backup = 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.undofile = true
|
||||||
vim.opt.hlsearch = false
|
vim.opt.hlsearch = false
|
||||||
vim.opt.incsearch = true
|
vim.opt.incsearch = true
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
vim.opt.scrolloff = 8
|
vim.opt.scrolloff = 8
|
||||||
vim.opt.signcolumn = "yes:1"
|
vim.opt.signcolumn = "yes:1"
|
||||||
vim.opt.isfname:append("@-@")
|
vim.opt.isfname:append "@-@"
|
||||||
vim.opt.updatetime = 50
|
vim.opt.updatetime = 50
|
||||||
vim.opt.colorcolumn = "80"
|
vim.opt.colorcolumn = "80"
|
||||||
vim.opt.textwidth = 80
|
vim.opt.textwidth = 80
|
||||||
@@ -34,7 +34,6 @@ vim.o.ignorecase = true
|
|||||||
vim.o.smartcase = true
|
vim.o.smartcase = true
|
||||||
vim.o.mouse = "a"
|
vim.o.mouse = "a"
|
||||||
vim.o.number = true
|
vim.o.number = true
|
||||||
vim.o.termguicolors = true
|
|
||||||
vim.o.numberwidth = 3
|
vim.o.numberwidth = 3
|
||||||
vim.o.ruler = false
|
vim.o.ruler = false
|
||||||
vim.o.showmode = false
|
vim.o.showmode = false
|
||||||
@@ -52,6 +51,6 @@ local sep = is_windows and "\\" or "/"
|
|||||||
local delim = 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.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
|
vim.g.tpipeline_restore = 1
|
||||||
|
|||||||
@@ -190,12 +190,6 @@ return {
|
|||||||
vim.g.minimal_italic_comments = true
|
vim.g.minimal_italic_comments = true
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ThePrimeagen/refactoring.nvim",
|
|
||||||
config = function()
|
|
||||||
require "config.format.refactoring"
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Yazeed1s/minimal.nvim",
|
"Yazeed1s/minimal.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
|
|||||||
Reference in New Issue
Block a user