diff options
author | Ben Sima <ben@bsima.me> | 2020-11-14 11:09:31 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-11-14 11:11:28 -0500 |
commit | ff7fb253b24d63cd49a679630833a3d90b635af2 (patch) | |
tree | 89bbb56ee4b48dea78de3c78ed7740735a96561d /lib | |
parent | c9c230c28310e3147340fa7189bb99ee01eb2432 (diff) |
Switch to neovim
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common.nix | 11 | ||||
-rw-r--r-- | lib/vimrc | 11 |
2 files changed, 5 insertions, 17 deletions
diff --git a/lib/common.nix b/lib/common.nix index 429d6b7..f7a7d35 100644 --- a/lib/common.nix +++ b/lib/common.nix @@ -135,11 +135,12 @@ in enable = true; }; - vim = { + neovim = { enable = true; - plugins = with pkgs.vimPlugins; [ - editorconfig-vim - ]; + vimAlias = true; + viAlias = true; + vimdiffAlias = true; + plugins = [ pkgs.vimPlugins.editorconfig-vim ]; extraConfig = builtins.readFile ./vimrc; }; @@ -198,9 +199,7 @@ in tdate = "date +%Y.%m.%d..%H.%M"; ttime = "date +%H.%M"; typeless = "history | tail -n 20000 | sed 's/.* //' | sort | uniq -c | sort -g | tail -n 100"; - v = "vim"; "v." = "vim ."; - vimdiff = "vim -d"; vk = "vim $(sk -m)"; vs = "vim $(sk -m)"; }; @@ -107,17 +107,6 @@ function! <SID>SynStack() echo map(synstack(line('.'), col('.')), 'synIDattr(v:val, "name")') endfunc -""" Plugins with vim-plug -""" only use this for stuff not available in nix/home-manager -if empty(glob('~/.vim/autoload/plug.vim')) - silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs - \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim - autocmd VimEnter * PlugInstall --sync | source $MYVIMRC -endif -call plug#begin('~/.vim/plugged') -Plug 'urbit/hoon.vim' -call plug#end() - " Vim color scheme, modified from Xavier's below " " Name: monochrome.vim |