Initial commit

This commit is contained in:
2026-03-25 12:44:19 +01:00
commit cc185a661c
13 changed files with 382 additions and 0 deletions

12
lua/options.lua Normal file
View File

@@ -0,0 +1,12 @@
require "nvchad.options"
vim.opt.colorcolumn = "80"
vim.wo.relativenumber = true
vim.opt.spell = true
vim.opt.spelllang = { "en_us", "cs" }
vim.api.nvim_create_autocmd("FileType", {
pattern = "java",
command = "setlocal tabstop=4 shiftwidth=4 expandtab"
})