stockholm/tv/2configs/vim.nix

389 lines
11 KiB
Nix
Raw Normal View History

2016-02-14 15:43:44 +00:00
{ config, lib, pkgs, ... }:
2015-11-01 09:50:03 +00:00
2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2017-01-05 20:03:23 +00:00
let {
body = {
2015-11-01 09:50:03 +00:00
environment.systemPackages = [
2017-04-04 06:38:20 +00:00
vim-wrapper
2015-11-01 09:50:03 +00:00
];
2015-11-01 12:59:53 +00:00
environment.etc.vimrc.source = vimrc;
2015-11-01 09:50:03 +00:00
environment.variables.EDITOR = mkForce "vim";
2015-11-01 12:59:53 +00:00
environment.variables.VIMINIT = ":so /etc/vimrc";
2015-11-01 09:50:03 +00:00
};
extra-runtimepath = concatMapStringsSep "," (pkg: "${pkg.rtp}") [
pkgs.vimPlugins.undotree
2016-07-03 18:48:15 +00:00
(pkgs.vimUtils.buildVimPlugin {
name = "vim-syntax-jq";
src = pkgs.fetchgit {
url = https://github.com/vito-c/jq.vim;
rev = "99d55a300047946a82ecdd7617323a751199ad2d";
2016-10-06 17:16:42 +00:00
sha256 = "09c94nah47wx0cr556w61h6pfznxld18pfblc3nv51ivbw7cjqyx";
2016-07-03 18:48:15 +00:00
};
})
(pkgs.vimUtils.buildVimPlugin {
2016-02-07 06:47:29 +00:00
name = "file-line-1.0";
src = pkgs.fetchgit {
url = git://github.com/bogado/file-line;
rev = "refs/tags/1.0";
sha256 = "0z47zq9rqh06ny0q8lpcdsraf3lyzn9xvb59nywnarf3nxrk6hx0";
};
})
2016-06-09 02:22:46 +00:00
((rtp: rtp // { inherit rtp; }) (pkgs.writeTextFile (let
name = "hack";
in {
2016-06-10 11:55:12 +00:00
name = "vim-color-${name}-1.0.2";
2016-06-09 02:22:46 +00:00
destination = "/colors/${name}.vim";
text = /* vim */ ''
set background=dark
hi clear
if exists("syntax_on")
syntax clear
endif
let colors_name = ${toJSON name}
2016-06-09 12:30:19 +00:00
hi Normal ctermbg=235
hi Comment ctermfg=242
hi Constant ctermfg=255
hi Identifier ctermfg=253
hi Function ctermfg=253
hi Statement ctermfg=253
hi PreProc ctermfg=251
hi Type ctermfg=251
hi Delimiter ctermfg=251
hi Special ctermfg=255
2016-06-09 02:22:46 +00:00
2016-06-09 12:30:19 +00:00
hi Garbage ctermbg=088
hi TabStop ctermbg=016
2016-06-10 11:55:12 +00:00
hi Todo ctermfg=174 ctermbg=NONE
2016-06-09 12:30:19 +00:00
hi NixCode ctermfg=040
hi NixData ctermfg=046
2016-06-10 14:28:27 +00:00
hi NixQuote ctermfg=071
2016-06-09 12:30:19 +00:00
hi diffNewFile ctermfg=207
hi diffFile ctermfg=207
hi diffLine ctermfg=207
hi diffSubname ctermfg=207
hi diffAdded ctermfg=010
hi diffRemoved ctermfg=009
2017-08-01 18:12:04 +00:00
hi Search cterm=NONE ctermbg=216
2016-06-09 02:22:46 +00:00
'';
})))
2016-06-09 11:22:47 +00:00
((rtp: rtp // { inherit rtp; }) (pkgs.writeTextFile (let
name = "vim";
in {
name = "vim-syntax-${name}-1.0.0";
destination = "/syntax/${name}.vim";
text = /* vim */ ''
${concatMapStringsSep "\n" (s: /* vim */ ''
syn keyword vimColor${s} ${s}
\ containedin=ALLBUT,vimComment,vimLineComment
hi vimColor${s} ctermfg=${s}
'') (map (i: lpad 3 "0" (toString i)) (range 0 255))}
'';
})))
((rtp: rtp // { inherit rtp; }) (pkgs.writeTextFile (let
name = "showsyntax";
in {
name = "vim-plugin-${name}-1.0.0";
destination = "/plugin/${name}.vim";
text = /* vim */ ''
if exists('g:loaded_showsyntax')
finish
endif
let g:loaded_showsyntax = 0
fu! ShowSyntax()
let id = synID(line("."), col("."), 1)
let name = synIDattr(id, "name")
let transName = synIDattr(synIDtrans(id),"name")
if name != transName
let name .= " (" . transName . ")"
endif
echo "Syntax: " . name
endfu
command! -n=0 -bar ShowSyntax :call ShowSyntax()
'';
})))
2018-06-19 19:23:35 +00:00
((rtp: rtp // { inherit rtp; }) (pkgs.write "vim-tv" {
2016-06-30 01:20:23 +00:00
"/syntax/haskell.vim".text = /* vim */ ''
syn region String start=+\[[[:alnum:]]*|+ end=+|]+
hi link ConId Identifier
hi link VarId Identifier
hi link hsDelimiter Delimiter
'';
"/syntax/nix.vim".text = /* vim */ ''
"" Quit when a (custom) syntax file was already loaded
"if exists("b:current_syntax")
" finish
"endif
"setf nix
" Ref <nix/src/libexpr/lexer.l>
syn match NixID /[a-zA-Z\_][a-zA-Z0-9\_\'\-]*/
syn match NixINT /\<[0-9]\+\>/
syn match NixPATH /[a-zA-Z0-9\.\_\-\+]*\(\/[a-zA-Z0-9\.\_\-\+]\+\)\+/
syn match NixHPATH /\~\(\/[a-zA-Z0-9\.\_\-\+]\+\)\+/
syn match NixSPATH /<[a-zA-Z0-9\.\_\-\+]\+\(\/[a-zA-Z0-9\.\_\-\+]\+\)*>/
syn match NixURI /[a-zA-Z][a-zA-Z0-9\+\-\.]*:[a-zA-Z0-9\%\/\?\:\@\&\=\+\$\,\-\_\.\!\~\*\']\+/
syn region NixSTRING
\ matchgroup=NixSTRING
\ start='"'
\ skip='\\"'
\ end='"'
syn region NixIND_STRING
\ matchgroup=NixIND_STRING
\ start="'''"
\ skip="'''\('\|[$]\|\\[nrt]\)"
\ end="'''"
syn match NixOther /[-!+&<>|():/;=.,?\[\]*@]/
syn match NixCommentMatch /\(^\|\s\)#.*/
syn region NixCommentRegion start="/\*" end="\*/"
hi link NixCode Statement
hi link NixData Constant
hi link NixComment Comment
hi link NixCommentMatch NixComment
hi link NixCommentRegion NixComment
hi link NixID NixCode
hi link NixINT NixData
hi link NixPATH NixData
hi link NixHPATH NixData
hi link NixSPATH NixData
hi link NixURI NixData
hi link NixSTRING NixData
hi link NixIND_STRING NixData
hi link NixEnter NixCode
hi link NixOther NixCode
hi link NixQuote NixData
syn cluster nix_has_dollar_curly contains=@nix_ind_strings,@nix_strings
syn cluster nix_ind_strings contains=NixIND_STRING
syn cluster nix_strings contains=NixSTRING
2017-11-15 15:41:29 +00:00
${concatStringsSep "\n" (mapAttrsToList (name: {
extraStart ? null,
lang ? name
}:
let
2016-06-30 01:20:23 +00:00
startAlts = filter isString [
2017-11-15 15:41:29 +00:00
''/\* ${name} \*/''
2016-06-30 01:20:23 +00:00
extraStart
];
sigil = ''\(${concatStringsSep ''\|'' startAlts}\)[ \t\r\n]*'';
in /* vim */ ''
syn include @nix_${lang}_syntax syntax/${lang}.vim
if exists("b:current_syntax")
unlet b:current_syntax
endif
2016-06-30 01:20:23 +00:00
syn match nix_${lang}_sigil
\ X${replaceStrings ["X"] ["\\X"] sigil}\ze\('''\|"\)X
\ nextgroup=nix_${lang}_region_IND_STRING,nix_${lang}_region_STRING
\ transparent
syn region nix_${lang}_region_STRING
\ matchgroup=NixSTRING
\ start='"'
\ skip='\\"'
\ end='"'
\ contained
\ contains=@nix_${lang}_syntax
\ transparent
syn region nix_${lang}_region_IND_STRING
\ matchgroup=NixIND_STRING
\ start="'''"
\ skip="'''\('\|[$]\|\\[nrt]\)"
\ end="'''"
\ contained
\ contains=@nix_${lang}_syntax
\ transparent
syn cluster nix_ind_strings
\ add=nix_${lang}_region_IND_STRING
syn cluster nix_strings
\ add=nix_${lang}_region_STRING
" This is required because containedin isn't transitive.
syn cluster nix_has_dollar_curly
\ add=@nix_${lang}_syntax
'') {
c = {};
cabal = {};
diff = {};
haskell = {};
2016-07-03 18:48:15 +00:00
jq.extraStart = concatStringsSep ''\|'' [
''writeJq.*''
''write[^ \t\r\n]*[ \t\r\n]*"[^"]*\.jq"''
];
2016-06-30 01:20:23 +00:00
lua = {};
sed.extraStart = ''writeSed[^ \t\r\n]*[ \t\r\n]*"[^"]*"'';
sh.extraStart = concatStringsSep ''\|'' [
2018-01-04 01:31:27 +00:00
''write\(A\|Ba\|Da\)sh[^ \t\r\n]*[ \t\r\n]*\("[^"]*"\|[a-z]\+\)''
2016-06-30 01:20:23 +00:00
''[a-z]*Phase[ \t\r\n]*=''
];
2017-07-22 18:00:44 +00:00
yaml = {};
2016-06-30 01:20:23 +00:00
vim.extraStart =
''write[^ \t\r\n]*[ \t\r\n]*"\(\([^"]*\.\)\?vimrc\|[^"]*\.vim\)"'';
xdefaults = {};
})}
" Clear syntax that interferes with nixINSIDE_DOLLAR_CURLY.
syn clear shVarAssign
syn region nixINSIDE_DOLLAR_CURLY
\ matchgroup=NixEnter
\ start="[$]{"
\ end="}"
\ contains=TOP
\ containedin=@nix_has_dollar_curly
\ transparent
syn region nix_inside_curly
\ matchgroup=NixEnter
\ start="{"
\ end="}"
\ contains=TOP
\ containedin=nixINSIDE_DOLLAR_CURLY,nix_inside_curly
\ transparent
syn match NixQuote /'''\(''$\|\\.\)/he=s+2
\ containedin=@nix_ind_strings
\ contained
syn match NixQuote /'''\('\|\\.\)/he=s+1
\ containedin=@nix_ind_strings
\ contained
syn match NixQuote /\\./he=s+1
\ containedin=@nix_strings
\ contained
syn sync fromstart
let b:current_syntax = "nix"
set isk=@,48-57,_,192-255,-,'
'';
2016-06-30 01:21:38 +00:00
"/syntax/sed.vim".text = /* vim */ ''
syn region sedBranch
\ matchgroup=sedFunction start="T"
\ matchgroup=sedSemicolon end=";\|$"
\ contains=sedWhitespace
'';
2016-06-30 01:20:23 +00:00
}))
];
2015-11-01 09:50:03 +00:00
2015-12-27 18:33:12 +00:00
dirs = {
backupdir = "$HOME/.cache/vim/backup";
swapdir = "$HOME/.cache/vim/swap";
undodir = "$HOME/.cache/vim/undo";
};
files = {
viminfo = "$HOME/.cache/vim/info";
};
2018-01-16 18:24:42 +00:00
need-dirs = let
2015-12-27 18:33:12 +00:00
dirOf = s: let out = concatStringsSep "/" (init (splitString "/" s));
in assert out != ""; out;
alldirs = attrValues dirs ++ map dirOf (attrValues files);
in unique (sort lessThan alldirs);
2017-06-20 17:30:14 +00:00
vim-wrapper = pkgs.symlinkJoin {
name = "vim";
paths = [
(pkgs.writeDashBin "vim" ''
set -efu
2018-01-16 18:24:42 +00:00
(umask 0077; exec ${pkgs.coreutils}/bin/mkdir -p ${toString need-dirs})
2017-07-12 21:51:49 +00:00
exec ${pkgs.vim}/bin/vim "$@"
2017-06-20 17:30:14 +00:00
'')
2017-07-12 21:51:49 +00:00
pkgs.vim
2017-06-20 17:30:14 +00:00
];
};
2015-12-27 18:33:12 +00:00
2015-11-01 09:50:03 +00:00
vimrc = pkgs.writeText "vimrc" ''
set nocompatible
set autoindent
set backspace=indent,eol,start
set backup
2015-12-27 18:33:12 +00:00
set backupdir=${dirs.backupdir}/
set directory=${dirs.swapdir}//
2015-11-01 09:50:03 +00:00
set hlsearch
set incsearch
set mouse=a
2015-11-01 12:21:35 +00:00
set noruler
2015-11-01 09:50:03 +00:00
set pastetoggle=<INS>
2016-06-30 01:12:27 +00:00
set runtimepath=$VIMRUNTIME,${extra-runtimepath}
2015-11-01 09:50:03 +00:00
set shortmess+=I
set showcmd
set showmatch
set ttimeoutlen=0
2015-12-27 18:33:12 +00:00
set undodir=${dirs.undodir}
2015-11-01 09:50:03 +00:00
set undofile
set undolevels=1000000
set undoreload=1000000
2015-12-27 18:33:12 +00:00
set viminfo='20,<1000,s100,h,n${files.viminfo}
2015-11-01 09:50:03 +00:00
set visualbell
set wildignore+=*.o,*.class,*.hi,*.dyn_hi,*.dyn_o
set wildmenu
set wildmode=longest,full
2015-11-04 23:31:14 +00:00
set et ts=2 sts=2 sw=2
2015-11-01 09:50:03 +00:00
filetype plugin indent on
2015-11-01 12:17:11 +00:00
set t_Co=256
2016-06-09 02:22:46 +00:00
colorscheme hack
2015-11-01 09:50:03 +00:00
syntax on
2016-06-10 11:54:50 +00:00
au Syntax * syn match Garbage containedin=ALL /\s\+$/
\ | syn match TabStop containedin=ALL /\t\+/
\ | syn keyword Todo containedin=ALL TODO
2015-11-01 09:50:03 +00:00
2016-06-30 01:20:23 +00:00
au BufRead,BufNewFile *.nix set ft=nix
2015-11-01 12:13:07 +00:00
2015-11-01 12:22:43 +00:00
au BufRead,BufNewFile /dev/shm/* set nobackup nowritebackup noswapfile
2015-11-01 09:50:03 +00:00
cnoremap <C-A> <Home>
noremap <C-c> :q<cr>
nnoremap <esc>[5^ :tabp<cr>
nnoremap <esc>[6^ :tabn<cr>
nnoremap <esc>[5@ :tabm -1<cr>
nnoremap <esc>[6@ :tabm +1<cr>
nnoremap <f1> :tabp<cr>
nnoremap <f2> :tabn<cr>
inoremap <f1> <esc>:tabp<cr>
inoremap <f2> <esc>:tabn<cr>
" <C-{Up,Down,Right,Left>
noremap <esc>Oa <nop> | noremap! <esc>Oa <nop>
noremap <esc>Ob <nop> | noremap! <esc>Ob <nop>
noremap <esc>Oc <nop> | noremap! <esc>Oc <nop>
noremap <esc>Od <nop> | noremap! <esc>Od <nop>
" <[C]S-{Up,Down,Right,Left>
noremap <esc>[a <nop> | noremap! <esc>[a <nop>
noremap <esc>[b <nop> | noremap! <esc>[b <nop>
noremap <esc>[c <nop> | noremap! <esc>[c <nop>
noremap <esc>[d <nop> | noremap! <esc>[d <nop>
vnoremap u <nop>
'';
2017-01-05 20:03:23 +00:00
}