You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--default indentation (there is plugin that's trying to guess indentation style in opened file)
57
+
--Default indentation (there is plugin that's trying to guess indentation style in opened file)
57
58
vim.opt.autoindent=true
58
59
vim.opt.softtabstop=4
59
60
vim.opt.tabstop=4
60
61
vim.opt.shiftwidth=4
61
62
vim.opt.expandtab=true
62
63
63
-
-- folding
64
+
-- folding
64
65
vim.opt.foldmethod="indent"
65
66
vim.opt.foldexpr="nvim_treesitter#foldexpr()"
66
67
vim.opt.foldenable=true
67
68
vim.opt.foldlevel=9
68
69
69
-
-- DON'T WRAP LONG LINES! I'll wrap them with formatter or by myself.
70
+
-- DON'T WRAP LONG LINES! I'll wrap them with formatter or by myself.
70
71
vim.opt.textwidth=0
71
72
vim.opt.linebreak=true
72
73
vim.opt.breakindent=true
73
74
vim.opt.breakindentopt="min:60,shift:0,sbr"
74
75
vim.opt.showbreak="+++ " -- show that sign on breaked lines.
75
-
-- @example ...and if they need to be long, just display them with line break. ...and if they need to be long, just display them with line break. ...and if they need to be long, just display them with line break. ...and if they need to be long, just display them with line break. ...and if they need to be long, just display them with line break. ...and if they need to be long, just display them with line break.
76
+
-- @example ...and if they need to be long, just display them with line break. ...and if they need to be long, just display them with line break. ...and if they need to be long, just display them with line break. ...and if they need to be long, just display them with line break. ...and if they need to be long, just display them with line break. ...and if they need to be long, just display them with line break.
0 commit comments