Editor, terminal and other configs I would need when setting up a new machine
- Install Vundle;
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
- symlink
.vimrc
andftplugin
;
ln -s /path/to/system-configs/.vimrc .vimrc
ln -s /path/to/system-configs/ftplugin .vim/ftplugin
- With vim started, install plugins;
:PluginInstall
- Complete
YouCompleteMe
installation;
# brew install cmake
# build with go and js support enabled - will require go and node
cd .vim/bundle/YouCompleteMe
./install.py --go-completer --ts-completer
The default ~/.bashrc
file sources ~/.bash_aliases
if it exists. Add a symlink;
ln -s /path/to/system-configs/.bash_aliases ~/.bash_aliases
source ~/.bash_aliases
# see all aliases
alias
- the_silver_searcher(mac)/silversearcher-ag(debian based systems)
- xclip
- docker
- docker-compose
- add
.swp
and.swo
to global.gitignore