16 lines
254 B
Lua
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
|