13 lines
264 B
Lua
13 lines
264 B
Lua
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"
|
|
})
|