summary refs log blame commit diff stats
path: root/hm/neovim/lua/options.lua
blob: 2d9fa2dde0ec1de68f85afeacbb1a6a4cbd6b86d (plain) (tree)























                                    
      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;