This commit is contained in:
Thomas Ruoff
2025-05-19 08:53:49 +02:00
parent 07bf86ba5a
commit c4039d2287
2 changed files with 4 additions and 4 deletions

View File

@@ -3,9 +3,7 @@ vim.opt.relativenumber = true
vim.opt.mouse = 'a' vim.opt.mouse = 'a'
vim.opt.showmode = false vim.opt.showmode = false
vim.schedule(function() vim.schedule(function() vim.opt.clipboard = 'unnamedplus' end)
vim.opt.clipboard = 'unnamedplus'
end)
vim.opt.breakindent = true vim.opt.breakindent = true
vim.opt.undofile = true vim.opt.undofile = true
@@ -33,4 +31,7 @@ vim.opt.cursorline = true
-- Minimal number of screen lines to keep above and below the cursor. -- Minimal number of screen lines to keep above and below the cursor.
vim.opt.scrolloff = 10 vim.opt.scrolloff = 10
-- global statusline
vim.o.laststatus = 3
vim.opt.confirm = true vim.opt.confirm = true

View File

@@ -14,7 +14,6 @@ return {
}, },
keys = { keys = {
{ '<leader><space>', function() Snacks.picker.smart() end, desc = 'Smart Find Files' }, { '<leader><space>', function() Snacks.picker.smart() end, desc = 'Smart Find Files' },
{ '<leader>,', function() Snacks.picker.buffers() end, desc = 'Buffers' },
{ '<leader>/', function() Snacks.picker.grep() end, desc = 'Grep' }, { '<leader>/', function() Snacks.picker.grep() end, desc = 'Grep' },
{ '<leader>:', function() Snacks.picker.command_history() end, desc = 'Command History' }, { '<leader>:', function() Snacks.picker.command_history() end, desc = 'Command History' },
{ '<leader>n', function() Snacks.picker.notifications() end, desc = 'Notification History' }, { '<leader>n', function() Snacks.picker.notifications() end, desc = 'Notification History' },