mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
16 lines
437 B
Lua
16 lines
437 B
Lua
local opt = vim.opt
|
|
|
|
vim.g.dap_virtual_text = true
|
|
vim.wo.relativenumber = true
|
|
vim.wo.wrap = false
|
|
-- opt.iskeyword:append("-")
|
|
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
|