summaryrefslogtreecommitdiff
path: root/config/plugin/options.lua
diff options
context:
space:
mode:
authorseth <[email protected]>2023-09-17 04:54:00 -0400
committerseth <[email protected]>2023-10-07 12:55:41 -0400
commit9d0051e6b4170851ebcc09e7ff44097818c8e1dc (patch)
tree067e1d6b745fc61aeb9b885439482f946bbdf2fe /config/plugin/options.lua
parente910460767dd835c7fb8aa7a59082e645c207cbd (diff)
start using willruggiano/neovim.nix
Diffstat (limited to 'config/plugin/options.lua')
-rw-r--r--config/plugin/options.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/config/plugin/options.lua b/config/plugin/options.lua
new file mode 100644
index 0000000..7a13888
--- /dev/null
+++ b/config/plugin/options.lua
@@ -0,0 +1,12 @@
+local opt = vim.opt
+
+-- text options
+opt.tabstop = 2
+opt.shiftwidth = 2
+opt.expandtab = false
+opt.smartindent = true
+opt.wrap = true
+
+-- appearance
+opt.syntax = "on"
+opt.termguicolors = true