diff options
author | lassulus <lassulus@lassul.us> | 2018-01-30 18:20:10 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2018-01-30 18:20:10 +0100 |
commit | de21c3d6bccbe2de25568334cfb2db33c235b21b (patch) | |
tree | b34ee761650b637a30300eb78f74a4c96cb122e1 /jeschli/2configs | |
parent | 7b49153a48924274a9174002e766b9f56b532ba2 (diff) | |
parent | 2682c735526d6593795d324a50dda5fd557c6ef1 (diff) |
Merge remote-tracking branch 'prism/staging/jeschli'
Diffstat (limited to 'jeschli/2configs')
-rw-r--r-- | jeschli/2configs/vim.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/jeschli/2configs/vim.nix b/jeschli/2configs/vim.nix index 65ce7dfa4..7721b1d40 100644 --- a/jeschli/2configs/vim.nix +++ b/jeschli/2configs/vim.nix @@ -20,6 +20,7 @@ let sha256 = "1z3yhhbmbzfw68qjzyvpbmlyv2a1p814sy5q2knn04kcl30vx94a"; }; }; + in { environment.systemPackages = [ (pkgs.vim_configurable.customize { @@ -65,11 +66,17 @@ in { let g:molokai_original = 1 let g:rehash256 = 1 ''; - + settingsForElm = '' + let g:polyglot_disabled = ['elm'] + let g:elm_detailed_complete = 1 + let g:elm_format_autosave = 1 + let g:elm_syntastic_show_warnings = 1 + ''; in '' ${colorscheme} ${remapStatements} ${setStatements} + ${settingsForElm} ${settingsForGo} " I dont know what this line is about autocmd BufNewFile,BufRead *.go setlocal noexpandtab tabstop=4 shiftwidth=4 @@ -85,6 +92,7 @@ in { "surround" "Syntastic" "undotree" + "elm-vim" ]; } { names = [ "vim-addon-nix" ]; ft_regex = "^nix\$"; } |