.vimrc Julia

This commit is contained in:
2022-02-14 17:17:37 +01:00
parent 5fc158cf12
commit eb7a79a758

7
.vimrc
View File

@@ -32,6 +32,7 @@ if filereadable(expand(vundle_dir) . "/README.md")
endif endif
Plugin 'dense-analysis/ale' Plugin 'dense-analysis/ale'
Plugin 'tpope/vim-unimpaired' Plugin 'tpope/vim-unimpaired'
Plugin 'JuliaEditorSupport/julia-vim'
call vundle#end() " required call vundle#end() " required
else else
@@ -322,6 +323,12 @@ nmap <F2> :NERDTreeToggle<CR>
nmap <F3> :NERDTreeFind<CR> nmap <F3> :NERDTreeFind<CR>
map <F5> :call CurtineIncSw()<CR> map <F5> :call CurtineIncSw()<CR>
" Julialang
let g:latex_to_unicode_auto = 1
noremap <expr> <F7> LaTeXtoUnicode#Toggle()
noremap! <expr> <F7> LaTeXtoUnicode#Toggle()
nmap <Leader>cf :cd %:p:h <CR> " Change dir to parent of current file nmap <Leader>cf :cd %:p:h <CR> " Change dir to parent of current file
nmap <Leader>cg :cd $git_root_location <CR> " Change dir to git root nmap <Leader>cg :cd $git_root_location <CR> " Change dir to git root
nmap <Leader>vs :sp $HOME/.vimrc <CR> nmap <Leader>vs :sp $HOME/.vimrc <CR>