Compare commits

..

2 commits

Author SHA1 Message Date
leafee98 06ff82f719 Highlight cursorline and adjust search pattern 2024-10-22 21:45:39 +08:00
leafee98 dd18532b32 Add builtin mark into marks.nvim 2024-10-22 21:37:18 +08:00
2 changed files with 5 additions and 1 deletions

View file

@ -17,6 +17,10 @@ vim.o.smartindent = true
vim.o.list = true vim.o.list = true
vim.o.relativenumber = true vim.o.relativenumber = true
vim.o.number = true vim.o.number = true
vim.o.cursorline = true
vim.o.ignorecase = true
vim.o.smartcase = true
vim.o.colorcolumn = "101" vim.o.colorcolumn = "101"

View file

@ -24,7 +24,7 @@ return {
{ {
"chentoast/marks.nvim", "chentoast/marks.nvim",
opts = { opts = {
builtin_marks = { ".", "<", ">", "^" }, builtin_marks = { ".", "<", ">", "^", "'" },
mappings = { mappings = {
next = "]m", next = "]m",
prev = "[m", prev = "[m",