diff options
Diffstat (limited to 'fnl/opt.fnl')
-rw-r--r-- | fnl/opt.fnl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/fnl/opt.fnl b/fnl/opt.fnl new file mode 100644 index 0000000..e28645c --- /dev/null +++ b/fnl/opt.fnl @@ -0,0 +1,13 @@ +(tset vim.opt :wrap false) +(tset vim.opt :linebreak false) + +(tset vim.opt :tabstop 2) +(tset vim.opt :shiftwidth 2) +(tset vim.bo :softtabstop 2) +(tset vim.opt :expandtab true) + +(tset vim.opt :number true) +(tset vim.o :signcolumn :yes) +(tset vim.opt :termguicolors true) +;--vim.opt.fillchars = { eob = ""} +(vim.cmd (.. "colorscheme " _G.settings.colorscheme)) |