add niri and update nvim config

This commit is contained in:
fbachus
2026-01-22 22:54:47 +01:00
parent 8a6093de74
commit 3fdadd648b
208 changed files with 6922 additions and 255 deletions

View File

@@ -1,6 +1,7 @@
vim.o.compatible = false
vim.o.showmatch = true
vim.o.hlsearch = true
vim.o.ignorecase = true
vim.o.smartcase = true
vim.o.incsearch = false
vim.o.tabstop = 4
@@ -38,6 +39,7 @@ vim.g.netrw_winsize = 20
-- is used for the preview window.
vim.g.mapleader = " "
-- vim.g.maplocalleader = "\\"
-- move highlighted lines up and down, automatic indentation
vim.keymap.set("v", "J", ":m '>+1<CR>gv=gv")