aboutsummaryrefslogtreecommitdiffstats
path: root/users/sils/neovim/lua/options.lua
diff options
context:
space:
mode:
Diffstat (limited to 'users/sils/neovim/lua/options.lua')
-rw-r--r--users/sils/neovim/lua/options.lua25
1 files changed, 0 insertions, 25 deletions
diff --git a/users/sils/neovim/lua/options.lua b/users/sils/neovim/lua/options.lua
deleted file mode 100644
index 2d9fa2d..0000000
--- a/users/sils/neovim/lua/options.lua
+++ /dev/null
@@ -1,25 +0,0 @@
- local set = vim.opt;
-
- set.autoindent = true;
- set.cindent = true;
- set.incsearch = true;
- set.ignorecase = true;
- set.smartcase = true;
- set.showmatch = true;
- set.hlsearch = false;
-
- set.mouse = "";
- set.number = true;
- set.relativenumber = true;
- set.shell = zsh;
-
- set.spell = true;
- set.spelllang = "en_us,de_de";
- set.spelloptions = "camel";
-
- set.syntax = "ON";
-
- set.shiftwidth = 2;
- set.tabstop = 2;
- set.expandtab = true;
- set.so = 999;