diff options
author | jeschli <jeschli@gmail.com> | 2018-01-28 18:32:29 +0000 |
---|---|---|
committer | jeschli <jeschli@gmail.com> | 2018-01-28 18:32:29 +0000 |
commit | 5a8df08fb14a397239e9bafea9f9581f1f5cea3e (patch) | |
tree | 5ed2c5ac370b24d2f62c481687cae8aa36a8058f /jeschli/2configs | |
parent | 30a6c5aa6e3cf99ac10ef76b33c30462f05df505 (diff) |
jeschli vim: +vim-elm
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 65ce7df..7721b1d 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\$"; } |