2025 refresh

This commit is contained in:
2025-06-22 17:23:20 +02:00
parent 5c4ade2feb
commit 038880829c
22 changed files with 302 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
vim.g.mapleader = ' '
vim.o.wrap = true
vim.g.maplocalleader = ' '
vim.o.number = true
vim.o.relativenumber = true
vim.o.mouse = 'a'
vim.schedule(function()
vim.o.clipboard = 'unnamedplus'
end )
vim.o.breakindent = true
vim.o.undofile = true
vim.o.ignorecase = true
vim.o.smartcase = true
vim.o.signcolumn = 'yes'
vim.o.splitright = true
vim.o.splitbelow = true
vim.olist = true
vim.o.inccommand = 'split'
vim.o.scrolloff = 10
vim.o.autoindent = true
vim.o.hlsearch = true
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')