mirror of
https://github.com/DefectingCat/nvim
synced 2025-07-16 01:01:34 +00:00
add lazy
This commit is contained in:
20
lua/rua/core/options.lua
Normal file
20
lua/rua/core/options.lua
Normal file
@ -0,0 +1,20 @@
|
||||
local opt = vim.opt
|
||||
|
||||
vim.g.dap_virtual_text = true
|
||||
vim.o.cursorlineopt = "number,line"
|
||||
|
||||
opt.foldmethod = "expr"
|
||||
opt.foldexpr = "nvim_treesitter#foldexpr()"
|
||||
opt.foldlevel = 20
|
||||
opt.ignorecase = true
|
||||
opt.wildignore:append({ "*/node_modules/*" })
|
||||
opt.clipboard:append({ "unnamedplus" })
|
||||
--[[ opt.iskeyword:append("-") ]]
|
||||
opt.termguicolors = true -- True color support
|
||||
opt.autoindent = true --- Good auto indent
|
||||
opt.scrolloff = 3
|
||||
opt.encoding = utf8
|
||||
opt.fileencoding = utf8
|
||||
opt.cursorline = true
|
||||
opt.relativenumber = true
|
||||
opt.number = true
|
Reference in New Issue
Block a user