Moved fully away from helix to minimal nvim

This commit is contained in:
2026-05-08 09:27:02 +02:00
parent 3e62cbc43c
commit 9de55060c3
5 changed files with 88 additions and 39 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ vim.o.relativenumber = true -- Show relative line numbers
vim.o.cursorline = true -- Highlight the line where the cursor is
vim.o.wrap = false -- Don't wrap long lines to the next line
vim.o.list = true -- Show invisible characters (tabs, trailing spaces)
vim.o.scrolloff = 20 -- Keep 20 lines above/below cursor when scrolling
vim.o.scrolloff = 15 -- Keep 15 lines above/below cursor when scrolling
vim.o.winborder = 'rounded' -- Use rounded borders for floating windows
vim.o.ignorecase = true -- Ignore case in search patterns
vim.o.smartcase = true -- ...unless search contains an uppercase letter