Compare commits
3 Commits
acd130badc
...
treesitter
| Author | SHA1 | Date | |
|---|---|---|---|
| bf9ca21814 | |||
| b919ee1268 | |||
| 6c6ec48b86 |
@@ -21,7 +21,7 @@ local base_comment = ""
|
|||||||
|
|
||||||
-- ************************************************************************************************
|
-- ************************************************************************************************
|
||||||
--
|
--
|
||||||
-- NORMAL MODE
|
-- NORMAL mode
|
||||||
--
|
--
|
||||||
-- ************************************************************************************************
|
-- ************************************************************************************************
|
||||||
|
|
||||||
@@ -71,11 +71,18 @@ keymap.set( "n", "<leader>tx", ":tabclose<CR>" ) -- close current tab
|
|||||||
keymap.set( "n", "<leader>tn", ":tabn<CR>" ) -- go to next tab
|
keymap.set( "n", "<leader>tn", ":tabn<CR>" ) -- go to next tab
|
||||||
keymap.set( "n", "<leader>tp", ":tabp<CR>" ) -- go to prev tab
|
keymap.set( "n", "<leader>tp", ":tabp<CR>" ) -- go to prev tab
|
||||||
|
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Page movement with center alignment
|
||||||
|
--
|
||||||
|
keymap.set( "n", "<C-d>", "<C-d>zz", { desc = "Half page down"} )
|
||||||
|
keymap.set( "n", "<C-u>", "<C-u>zz", { desc = "Half page up"} )
|
||||||
|
|
||||||
--
|
--
|
||||||
-- diagnostic warning/error navigation
|
-- diagnostic warning/error navigation
|
||||||
--
|
--
|
||||||
keymap.set( "n", "g[", vim.diagnostic.goto_prev)
|
-- keymap.set( "n", "g[", vim.diagnostic.goto_prev)
|
||||||
keymap.set( "n", "g]", vim.diagnostic.goto_next)
|
-- keymap.set( "n", "g]", vim.diagnostic.goto_next)
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------------------------------------------------------
|
-- ----------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -3,7 +3,9 @@ local opt = vim.opt
|
|||||||
-- [[ Font ]]
|
-- [[ Font ]]
|
||||||
--opt.guifont = { "SauceCodePro NF:h11:r:#e-subpixelantialias:#h-none" }
|
--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: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 ]]
|
-- [[ Context ]]
|
||||||
opt.number = true -- set numbered lines
|
opt.number = true -- set numbered lines
|
||||||
@@ -108,6 +110,6 @@ opt.iskeyword:append("-")
|
|||||||
-- ----------------------------------------------------------------------------
|
-- ----------------------------------------------------------------------------
|
||||||
-- which.key options - 2026-05-28
|
-- which.key options - 2026-05-28
|
||||||
-- ----------------------------------------------------------------------------
|
-- ----------------------------------------------------------------------------
|
||||||
vim.o.timeout = true
|
vim.o.timeout = true
|
||||||
vim.o.timeoutlen = 300
|
vim.o.timeoutlen = 300
|
||||||
vim.o.mouse = ''
|
vim.o.mouse = ''
|
||||||
|
|||||||
+23
-11
@@ -191,17 +191,17 @@ return packer.startup(function(use)
|
|||||||
-- --------------------------------------------------------------
|
-- --------------------------------------------------------------
|
||||||
-- render-markdown - mz
|
-- render-markdown - mz
|
||||||
-- --------------------------------------------------------------
|
-- --------------------------------------------------------------
|
||||||
-- use {
|
use {
|
||||||
-- "MeanderingProgrammer/render-markdown.nvim",
|
"MeanderingProgrammer/render-markdown.nvim",
|
||||||
-- after = { 'nvim-treesitter' },
|
after = { 'nvim-treesitter' },
|
||||||
-- -- requires = { 'nvim-mini/mini.nvim', opt = true }, -- if you use the mini.nvim suite
|
-- requires = { 'nvim-mini/mini.nvim', opt = true }, -- if you use the mini.nvim suite
|
||||||
-- requires = { 'nvim-mini/mini.icons', opt = true }, -- if you use standalone mini plugins
|
requires = { 'nvim-mini/mini.icons', opt = true }, -- if you use standalone mini plugins
|
||||||
-- -- requires = { 'nvim-tree/nvim-web-devicons', opt = true }, -- if you prefer nvim-web-devicons
|
-- requires = { 'nvim-tree/nvim-web-devicons', opt = true }, -- if you prefer nvim-web-devicons
|
||||||
-- config = function()
|
config = function()
|
||||||
-- require('render-markdown').setup({})
|
require('render-markdown').setup({})
|
||||||
-- end
|
end
|
||||||
-- }
|
}
|
||||||
--
|
|
||||||
|
|
||||||
-- --------------------------------------------------------------------------------------------
|
-- --------------------------------------------------------------------------------------------
|
||||||
-- which-key
|
-- which-key
|
||||||
@@ -233,6 +233,9 @@ return packer.startup(function(use)
|
|||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- --------------------------------------------------------------------------------------------
|
||||||
|
-- Colorizer - 2026-06-27
|
||||||
|
-- --------------------------------------------------------------------------------------------
|
||||||
use {
|
use {
|
||||||
"norcalli/nvim-colorizer.lua",
|
"norcalli/nvim-colorizer.lua",
|
||||||
config = function()
|
config = function()
|
||||||
@@ -240,6 +243,15 @@ return packer.startup(function(use)
|
|||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
-- --------------------------------------------------------------------------------------------
|
||||||
|
-- Mini Icons - 2026-06-27
|
||||||
|
-- --------------------------------------------------------------------------------------------
|
||||||
|
use {
|
||||||
|
'nvim-mini/mini.icons'
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
-- --------------------------------------------------------------------------------------------
|
-- --------------------------------------------------------------------------------------------
|
||||||
-- Automatically set up your configuration after cloning packer.nvim.
|
-- Automatically set up your configuration after cloning packer.nvim.
|
||||||
-- Put this at the end after all plugins.
|
-- Put this at the end after all plugins.
|
||||||
|
|||||||
+27
-22
@@ -1,40 +1,45 @@
|
|||||||
require("which-key").setup {
|
require("which-key").setup {
|
||||||
plugins = {
|
plugins = {
|
||||||
marks = true, -- shows a list of your marks on ' and `
|
marks = true, -- shows a list of your marks on ' and `
|
||||||
registers = true, -- shows your registers on " in NORMAL or <C-r> in INSERT mode
|
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
|
-- the presets plugin, adds help for a bunch of default keybindings in Neovim
|
||||||
-- No actual key bindings are created
|
-- No actual key bindings are created
|
||||||
|
--
|
||||||
spelling = {
|
spelling = {
|
||||||
enabled = true, -- enabling this will show WhichKey when pressing z= to select spelling suggestions
|
enabled = true, -- enabling this will show WhichKey when pressing
|
||||||
suggestions = 20, -- how many suggestions should be shown in the list?
|
-- z= to select spelling suggestions
|
||||||
|
suggestions = 20, -- how many suggestions should be shown in the list?
|
||||||
},
|
},
|
||||||
presets = {
|
presets = {
|
||||||
operators = true, -- adds help for operators like d, y, ...
|
operators = true, -- adds help for operators like d, y, ...
|
||||||
motions = true, -- adds help for motions
|
motions = true, -- adds help for motions
|
||||||
text_objects = true, -- help for text objects triggered after entering an operator
|
text_objects = true, -- help for text objects triggered after entering an operator
|
||||||
windows = true, -- default bindings on <c-w>
|
windows = true, -- default bindings on <c-w>
|
||||||
nav = true, -- misc bindings to work with windows
|
nav = true, -- misc bindings to work with windows
|
||||||
z = true, -- bindings for folds, spelling and others prefixed with z
|
z = true, -- bindings for folds, spelling and others prefixed with z
|
||||||
g = true, -- bindings for prefixed with g
|
g = true, -- bindings for prefixed with g
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
operators = { gc = "Comments" },
|
operators = { gc = "Comments" },
|
||||||
icons = {
|
icons = {
|
||||||
breadcrumb = "»", -- symbol used in the command line area that shows your active key combo
|
breadcrumb = "»", -- symbol used in the command line area that shows your active key combo
|
||||||
separator = "➜", -- symbol used between a key and it's label
|
separator = "➜", -- symbol used between a key and it's label
|
||||||
group = "+", -- symbol prepended to a group
|
group = "+", -- symbol prepended to a group
|
||||||
},
|
},
|
||||||
popup_mappings = {
|
popup_mappings = {
|
||||||
scroll_down = "<c-d>", -- binding to scroll down 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
|
scroll_up = "<c-u>", -- binding to scroll up inside the popup
|
||||||
},
|
},
|
||||||
window = {
|
window = {
|
||||||
border = "none", -- none, single, double, shadow
|
border = "double", -- none, single, double, shadow
|
||||||
position = "bottom", -- bottom, top
|
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 = { 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]
|
margin = { 5, 5, 5, 5 }, -- extra window margin [top, right, bottom, left].
|
||||||
winblend = 0, -- value between 0-100 0 for fully opaque and 100 for fully transparent
|
-- When between 0 and 1, will be treated as a percentage of the screen size.
|
||||||
zindex = 1000, -- positive value to position WhichKey above other floating windows.
|
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