Updated Yazi: version, hop plugin, glow preview

This commit is contained in:
Thomas Naderer
2025-05-30 23:30:44 +02:00
parent b3cb8b7fdf
commit 85ef8dca72
11 changed files with 324 additions and 87 deletions

View File

@@ -3,6 +3,14 @@ vim.opt.tabstop = 4 -- Number of spaces that a <Tab> counts for
vim.opt.shiftwidth = 4 -- Number of spaces for indentation
vim.opt.expandtab = true -- Use spaces instead of tabs
vim.cmd [[highlight CursorLine guibg=#3c3836]] -- Darker background for the line
vim.cmd [[highlight CursorColumn guibg=#504945]] -- Slightly darker for the column
vim.cmd [[set incsearch ]] -- Enables incremental search
vim.cmd [[set hlsearch ]] -- Highlights search results
vim.cmd [[set ignorecase]] -- Case insensitive search
vim.cmd [[set smartcase ]] -- Case sensitive if uppercase letters are used
-- Coloscheme
vim.cmd [[colorscheme gruvbox]]
@@ -13,3 +21,6 @@ vim.cmd([[
highlight Normal ctermbg=none guibg=none
highlight NonText ctermbg=none guibg=none
]])
vim.o.title = true
vim.o.titlestring = "nvim: %f"