Colorizer added
This commit is contained in:
@@ -3,7 +3,9 @@ local opt = vim.opt
|
||||
-- [[ Font ]]
|
||||
--opt.guifont = { "SauceCodePro NF:h11:r:#e-subpixelantialias:#h-none" }
|
||||
--opt.guifont = { "BlexMono NFM:h11:l:i:#e-subpixelantialias:#h-none" }
|
||||
opt.guifont = { "BlexMono NFM:h11:l:#e-subpixelantialias:#h-none" }
|
||||
-- opt.guifont = { "BlexMono NFM:h20:l:#e-subpixelantialias:#h-none" }
|
||||
-- opt.guifont = { "MesloLGS Nerd Font Mono:h19:l:#e-subpixelantialias:#h-none" }
|
||||
opt.guifont = { "JetBrainsMono Nerd Font:h19:l:#e-subpixelantialias:#h-none" }
|
||||
|
||||
-- [[ Context ]]
|
||||
opt.number = true -- set numbered lines
|
||||
@@ -108,6 +110,6 @@ opt.iskeyword:append("-")
|
||||
-- ----------------------------------------------------------------------------
|
||||
-- which.key options - 2026-05-28
|
||||
-- ----------------------------------------------------------------------------
|
||||
vim.o.timeout = true
|
||||
vim.o.timeoutlen = 300
|
||||
vim.o.mouse = ''
|
||||
vim.o.timeout = true
|
||||
vim.o.timeoutlen = 300
|
||||
vim.o.mouse = ''
|
||||
|
||||
@@ -233,6 +233,9 @@ return packer.startup(function(use)
|
||||
end
|
||||
}
|
||||
|
||||
-- --------------------------------------------------------------------------------------------
|
||||
-- Colorizer - 2026-06-27
|
||||
-- --------------------------------------------------------------------------------------------
|
||||
use {
|
||||
"norcalli/nvim-colorizer.lua",
|
||||
config = function()
|
||||
@@ -241,6 +244,9 @@ return packer.startup(function(use)
|
||||
}
|
||||
|
||||
|
||||
-- --------------------------------------------------------------------------------------------
|
||||
-- Mini Icons - 2026-06-27
|
||||
-- --------------------------------------------------------------------------------------------
|
||||
use {
|
||||
'nvim-mini/mini.icons'
|
||||
}
|
||||
|
||||
+27
-22
@@ -1,40 +1,45 @@
|
||||
require("which-key").setup {
|
||||
plugins = {
|
||||
marks = true, -- shows a list of your marks on ' and `
|
||||
registers = true, -- shows your registers on " in NORMAL or <C-r> in INSERT mode
|
||||
marks = true, -- shows a list of your marks on ' and `
|
||||
registers = true, -- shows your registers on " in NORMAL
|
||||
-- or <C-r> in INSERT mode
|
||||
-- the presets plugin, adds help for a bunch of default keybindings in Neovim
|
||||
-- No actual key bindings are created
|
||||
--
|
||||
spelling = {
|
||||
enabled = true, -- enabling this will show WhichKey when pressing z= to select spelling suggestions
|
||||
suggestions = 20, -- how many suggestions should be shown in the list?
|
||||
enabled = true, -- enabling this will show WhichKey when pressing
|
||||
-- z= to select spelling suggestions
|
||||
suggestions = 20, -- how many suggestions should be shown in the list?
|
||||
},
|
||||
presets = {
|
||||
operators = true, -- adds help for operators like d, y, ...
|
||||
motions = true, -- adds help for motions
|
||||
text_objects = true, -- help for text objects triggered after entering an operator
|
||||
windows = true, -- default bindings on <c-w>
|
||||
nav = true, -- misc bindings to work with windows
|
||||
z = true, -- bindings for folds, spelling and others prefixed with z
|
||||
g = true, -- bindings for prefixed with g
|
||||
operators = true, -- adds help for operators like d, y, ...
|
||||
motions = true, -- adds help for motions
|
||||
text_objects = true, -- help for text objects triggered after entering an operator
|
||||
windows = true, -- default bindings on <c-w>
|
||||
nav = true, -- misc bindings to work with windows
|
||||
z = true, -- bindings for folds, spelling and others prefixed with z
|
||||
g = true, -- bindings for prefixed with g
|
||||
},
|
||||
},
|
||||
operators = { gc = "Comments" },
|
||||
icons = {
|
||||
breadcrumb = "»", -- symbol used in the command line area that shows your active key combo
|
||||
separator = "➜", -- symbol used between a key and it's label
|
||||
group = "+", -- symbol prepended to a group
|
||||
breadcrumb = "»", -- symbol used in the command line area that shows your active key combo
|
||||
separator = "➜", -- symbol used between a key and it's label
|
||||
group = "+", -- symbol prepended to a group
|
||||
},
|
||||
popup_mappings = {
|
||||
scroll_down = "<c-d>", -- binding to scroll down inside the popup
|
||||
scroll_up = "<c-u>", -- binding to scroll up inside the popup
|
||||
scroll_down = "<c-d>", -- binding to scroll down inside the popup
|
||||
scroll_up = "<c-u>", -- binding to scroll up inside the popup
|
||||
},
|
||||
window = {
|
||||
border = "shadow", -- none, single, double, shadow
|
||||
position = "bottom", -- bottom, top
|
||||
margin = { 1, 0, 1, 0 }, -- extra window margin [top, right, bottom, left]. When between 0 and 1, will be treated as a percentage of the screen size.
|
||||
padding = { 1, 2, 1, 2 }, -- extra window padding [top, right, bottom, left]
|
||||
winblend = 0, -- value between 0-100 0 for fully opaque and 100 for fully transparent
|
||||
zindex = 1000, -- positive value to position WhichKey above other floating windows.
|
||||
border = "double", -- none, single, double, shadow
|
||||
position = "bottom", -- bottom, top
|
||||
-- margin = { 1, 0, 1, 0 }, -- extra window margin [top, right, bottom, left]. When between 0 and 1, will be treated as a percentage of the screen size.
|
||||
margin = { 5, 5, 5, 5 }, -- extra window margin [top, right, bottom, left].
|
||||
-- When between 0 and 1, will be treated as a percentage of the screen size.
|
||||
padding = { 5, 5, 5, 5 }, -- extra window padding [top, right, bottom, left]
|
||||
winblend = 0, -- value between 0-100 0 for fully opaque and 100 for fully transparent
|
||||
zindex = 1000, -- positive value to position WhichKey above other floating windows.
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user