Updated Neovim config to lua, cleaned up unneccecary plugins

This commit is contained in:
2025-10-04 23:47:12 +02:00
parent d453460c01
commit 9308fa14a5
12 changed files with 328 additions and 191 deletions
+10
View File
@@ -0,0 +1,10 @@
vim.opt.number = true
vim.opt.relativenumber = false
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.termguicolors = true
vim.opt.cursorline = true
vim.opt.mouse = "a"
vim.opt.clipboard = "unnamedplus"