Привёл nvim к достаточному состоянию
This commit is contained in:
parent
020ed86034
commit
4d3bb0270a
27 changed files with 279 additions and 148 deletions
|
@ -28,18 +28,24 @@ local options = {
|
|||
tabstop = 4,
|
||||
cursorline = true,
|
||||
number = true,
|
||||
relativenumber = true,
|
||||
-- relativenumber = true,
|
||||
numberwidth = 4,
|
||||
signcolumn = "yes",
|
||||
wrap = true,
|
||||
scrolloff = 8,
|
||||
sidescrolloff = 8,
|
||||
syntax = "on",
|
||||
foldmethod = "expr",
|
||||
foldexpr = "nvim_treesitter#foldexpr()",
|
||||
foldnestmax = 4,
|
||||
foldlevel = 99,
|
||||
foldlevelstart = 1,
|
||||
}
|
||||
|
||||
vim.opt.shortmess:append "c"
|
||||
vim.opt.shortmess:append("c")
|
||||
|
||||
for k, v in pairs(options) do
|
||||
vim.opt[k] = v
|
||||
end
|
||||
|
||||
vim.cmd "set whichwrap+=<,>,[,],h,l"
|
||||
vim.cmd("set whichwrap+=<,>,[,],h,l")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue