1
0
Fork 0
forked from autowolf/nix
This commit is contained in:
autowolf 2026-02-22 19:59:14 -06:00
commit 252814b193
20 changed files with 1531 additions and 0 deletions

11
modules/neovim/init.lua Normal file
View file

@ -0,0 +1,11 @@
vim.g.mapleader = " "
vim.opt.termguicolors = true -- use terminal colors
vim.opt.relativenumber = false
vim.opt.number = true
vim.opt.wrap = false
vim.opt.colorcolumn = "80"
require("plugins")
require("lsp")