From f972be9375e8ff82a6fbc3402ec47d4c8b611fcf Mon Sep 17 00:00:00 2001 From: sils Date: Sun, 25 Jun 2023 11:44:10 +0200 Subject: Feat: Disable grades, as this would stop config from building. --- users/sils/neovim/default.nix | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) (limited to 'users/sils/neovim/default.nix') diff --git a/users/sils/neovim/default.nix b/users/sils/neovim/default.nix index 2ac065c..c9e5ed5 100644 --- a/users/sils/neovim/default.nix +++ b/users/sils/neovim/default.nix @@ -5,34 +5,7 @@ viAlias = true; vimAlias = true; vimdiffAlias = true; - extraLuaConfig = '' - 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; - - ''; + extraLuaConfig = builtins.readFile ./lua/options.lua; extraConfig = '' inoremap jj vnoremap jj -- cgit v1.3.1