diff options
author | Urbain Vaes <urbain@vaes.uk> | 2019-02-17 15:27:42 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2019-02-17 15:27:42 +0100 |
commit | 8933be64e56ba7ddcd2d30f6135ab862a883e782 (patch) | |
tree | 071d5f30f77a1b4ec98a77c9c914bc6a627f3503 | |
parent | 4cc0693d76a370e4e4d65e09a36d8fb06e49bdec (diff) |
Minor changes
-rw-r--r-- | vim/.vim/spell/en.utf-8.add | 7 | ||||
-rw-r--r-- | vim/.vim/spell/en.utf-8.add.spl | bin | 666 -> 765 bytes | |||
-rw-r--r-- | vim/.vimrc | 9 | ||||
-rw-r--r-- | zsh/.zshrc | 3 |
4 files changed, 13 insertions, 6 deletions
diff --git a/vim/.vim/spell/en.utf-8.add b/vim/.vim/spell/en.utf-8.add index 85c3d81..fd078ae 100644 --- a/vim/.vim/spell/en.utf-8.add +++ b/vim/.vim/spell/en.utf-8.add @@ -35,3 +35,10 @@ hypocoercive underdamped Langevin overdamped +hypocoercivity +asymptotics +semigroup +discretize +isometry +immiscible +wettability diff --git a/vim/.vim/spell/en.utf-8.add.spl b/vim/.vim/spell/en.utf-8.add.spl Binary files differindex 5107416..c57cf82 100644 --- a/vim/.vim/spell/en.utf-8.add.spl +++ b/vim/.vim/spell/en.utf-8.add.spl @@ -229,10 +229,11 @@ let g:UltiSnipsSnippetsDir="~/.vim/mySnippets" " let g:UltiSnipsUsePythonVersion=3 " Vimtex -let g:vimtex_fold_enabled=1 +let g:vimtex_fold_enabled=1 " Makes %s slow! let g:vimtex_view_method='zathura' let g:vimtex_quickfix_mode=2 let g:vimtex_compiler_progname='nvr' +let g:vimtex_syntax_enabled=1 " Pilot let g:pilot_boundary='ignore' @@ -253,8 +254,6 @@ endif function! Multiple_cursors_before() if has("nvim") let b:deoplete_disable_auto_complete = 1 - else - execute 'NeoCompleteLock' endif endfunction @@ -262,8 +261,6 @@ function! Multiple_cursors_after() if has("nvim") let b:deoplete_disable_auto_complete = 0 else - execute 'NeoCompleteUnlock' - endif endfunction "" Vim variables {{{1 @@ -419,7 +416,7 @@ augroup vimrc autocmd FileType gnuplot setlocal commentstring=#%s autocmd FileType gnuplot setlocal makeprg=gnuplot\ % autocmd FileType python setlocal makeprg=python\ % - autocmd FileType tex setlocal spell + autocmd FileType tex setlocal spell spelllang=en_us " Dirvish autocmd FileType dirvish nnoremap <buffer> t :!touch % @@ -191,4 +191,7 @@ alias pacs='pacman -Ss' alias sysnet="systemctl restart NetworkManager.service" alias sysvpn="systemctl restart openvpn-client@ic.service" +# Directories +alias ..="cd .." +alias ...="cd ../.." # }}} |