Various dotfile configuration files for various terminal applications. The
dotbot tool is used to bootstrap these
dotfiles for ease of use. Modify the install.conf.yaml file to change dotbot
settings.
You can make local customizations for some programs by editing these files:
vim:~/.vimrc_localzsh/ bash :~/.shell_local_beforerun firstzsh:~/.zshrc_local_beforerun before .zshrczsh:~/.zshrc_local_afterrun after .zshrczsh/ bash :~/.shell_local_afterrun lastgit:~/.gitconfig_localhg:~/.hgrc_localtmux:~/.tmux_local.conf
Install sympy to vim python
- Check that your vim supports python3 commands with
:version. It should have a+python3 - Check where your vim python stores its packages with
:python3 import site; print(site.getsitepackages()) - Go to that path and force pip to install to that directory
pip3 install -t . sympy --ignore-installed
Note: this is only required for VIM installed through brew. Brew lists python3 as a dependency and so it will also install python3. Sympy is not there by default, so you have to install it yourself.
Or on Ubuntu, you can do
env -i bash
sudo apt install python3-pip
pip3 install numpy sympyNote: UltiSnips goes from $1 to $2 to $n and then goes to $0 ($0 is always last)