summaryrefslogtreecommitdiff
path: root/nvim/lua/jonathan/core/options.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/jonathan/core/options.lua')
-rw-r--r--nvim/lua/jonathan/core/options.lua30
1 files changed, 30 insertions, 0 deletions
diff --git a/nvim/lua/jonathan/core/options.lua b/nvim/lua/jonathan/core/options.lua
new file mode 100644
index 0000000..dc50863
--- /dev/null
+++ b/nvim/lua/jonathan/core/options.lua
@@ -0,0 +1,30 @@
+local opt = vim.opt
+
+-- line numbers
+-- opt.relativenumber = true
+-- opt.numer = true
+
+
+-- tab & indent
+opt.tabstop = 4
+opt.shiftwidth = 4
+opt.expandtab = true
+opt.autoindent = false
+
+-- line wrapping
+opt.wrap = false
+
+
+-- search settings
+opt.ignorecase = true
+opt.smartcase = true
+
+
+--opt.termguicolors = true
+opt.background = "dark"
+
+-- jthan, plz
+opt.backspace = "indent,eol,start"
+-- opt.clipboard:append("unnamedplus")
+
+opt.mouse = ""