tangled
alpha
login
or
join now
althaea.zone
/
candy
0
fork
atom
neovim
0
fork
atom
overview
issues
pulls
pipelines
use vim.opt like it was intended
marshmallow.tngl.sh
9 months ago
59ca2534
a03ab6fe
+3
-3
1 changed file
expand all
collapse all
unified
split
candy
lua
marshmallow
defaults.lua
+3
-3
candy/lua/marshmallow/defaults.lua
···
53
53
-- Chars --
54
54
vim.opt.showbreak = "↪ "
55
55
vim.opt.list = true
56
56
-
vim.opt.listchars = "space:.,tab:▎·,trail:."
56
56
+
vim.opt.listchars = { space = ".", tab = "▎·", trail = "." }
57
57
58
58
-- Tabs / Spaces --
59
59
local tab_width = 8
···
74
74
vim.opt.exrc = true
75
75
76
76
-- Completion --
77
77
-
vim.opt.completeopt = "menuone,noselect,fuzzy"
78
78
-
vim.opt.wildoptions = "fuzzy,pum,tagfile"
77
77
+
vim.opt.completeopt = { "menuone", "noselect", "fuzzy" }
78
78
+
vim.opt.wildoptions = { "fuzzy", "pum", "tagfile" }
79
79
80
80
-- Search --
81
81
vim.opt.ignorecase = true