aboutsummaryrefslogtreecommitdiff
path: root/fnl/opt.fnl
diff options
context:
space:
mode:
authoramelia squires <[email protected]>2024-10-22 23:40:30 -0500
committeramelia squires <[email protected]>2024-10-22 23:40:30 -0500
commit0b7b1684d87b7d0b01b5645713b413e317699fd0 (patch)
tree70d54faa4536e97894754e63061f0d2fad99079c /fnl/opt.fnl
readme
Diffstat (limited to 'fnl/opt.fnl')
-rw-r--r--fnl/opt.fnl13
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))