dotfiles/vim/.vimrc
Akemi Izuko de244f9ea7
Init again
The dotfiles are back
2023-12-23 20:13:47 -07:00

13 lines
407 B
VimL

" Load init scripts shared with neovim
source ~/.vim/init_scripts/init.vim
" Convenience grepping
nnoremap <leader>gn :execute ":normal! :cnext\r"<CR>
nnoremap <leader>gN :execute ":normal! :cprevious\r"<CR>
" Remap python directory for MacOS
" Change this path if python isn't dynamicallly loading
if system("uname") =~ 'Darwin'
set pythonthreedll=/usr/local/Frameworks/Python.framework/Python
endif