feat: initialize repo

This commit is contained in:
antistereov
2025-07-13 15:38:39 +02:00
commit d30985b6b4
27 changed files with 695 additions and 0 deletions

15
nvim/init.lua Normal file
View File

@@ -0,0 +1,15 @@
require("config.lazy")
require("config.keymap")
vim.cmd("set expandtab")
vim.cmd("set tabstop=4")
vim.cmd("set softtabstop=4")
vim.cmd("set shiftwidth=4")
vim.cmd("set nowrap")
vim.cmd("set clipboard+=unnamedplus")
vim.opt.spell = true
vim.opt.spelllang = "en_us"
vim.opt.spelloptions:append("camel")
vim.wo.relativenumber = true
vim.opt.number = true