Files
dotfiles/.config/nvim/lua/options.lua
2025-08-04 20:24:49 +03:00

16 lines
254 B
Lua

require "nvchad.options"
-- add yours here!
local o = vim.o
-- set tabsize
o.tabstop = 4
o.expandtab = true
o.shiftwidth = 4
-- local o = vim.o
o.cursorlineopt ='both' -- to enable cursorline!
-- risc-v highlighting
vim.g.riscv_asm_all_enable = true