summary refs log tree commit diff stats
path: root/hm/neovim/lua/options.lua
blob: 2d9fa2dde0ec1de68f85afeacbb1a6a4cbd6b86d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
      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;