Last active
December 17, 2024 05:07
-
-
Save vdeemann/72d169d5860a735c872048b352c316e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
colorscheme default | |
:set number | |
:set relativenumber | |
" Install pathogen | |
""mkdir -p ~/.vim/autoload ~/.vim/bundle && \ | |
""curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim | |
" Install vim-elixir | |
" Using pathogen | |
""git clone https://github.com/elixir-editors/vim-elixir.git ~/.vim/bundle/vim-elixir | |
execute pathogen#infect() | |
" Enable syntax highlighting | |
syntax on | |
" Enables filetype detection, loads ftplugin, and loads indent | |
" (Not necessary on nvim and may not be necessary on vim 8.2+) | |
filetype plugin indent on | |
" https://stackoverflow.com/questions/15123477/tmux-tabs-with-name-of-file-open-in-vim | |
"autocmd VimLeave * call system("tmux rename-window bash") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment