https://github.com/suminb/env
Environment variables, configurations, settings, etc.
https://github.com/suminb/env
Last synced: 9 months ago
JSON representation
Environment variables, configurations, settings, etc.
- Host: GitHub
- URL: https://github.com/suminb/env
- Owner: suminb
- Created: 2011-11-22T03:33:20.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2025-06-19T02:43:12.000Z (about 1 year ago)
- Last Synced: 2025-06-19T03:34:23.252Z (about 1 year ago)
- Language: Shell
- Homepage:
- Size: 82 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Install Oh My Zsh
---
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
See https://github.com/robbyrussell/oh-my-zsh for more info.
Install Vundle
---
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
See https://github.com/VundleVim/Vundle.vim for more info.
Change Default Shell (in Ubuntu)
---
chsh -s $(which zsh)
Miscellaneous Notes
---
### Asynchronous Lint Engine (ALE)
[ALE](https://github.com/w0rp/ale) requires either NeoVim or Vim version 8 or higher. However, Ubuntu 16.04 LTS comes with Vim 7 and ALE won't work with it. Vim 8 can be obtained as follows:
sudo add-apt-repository ppa:pi-rho/dev
sudo apt update
sudo apt install vim
Then add the following line in `.vimrc` to enable the plugin.
Plugin 'w0rp/ale'
### Vim Cheatsheets
(Not sure if this is a good place for this kind of notes, but we'll put it here for now)
#### Search
/pattern
#### Search in `*.py` files
:vim /pattern/ **/*.py
#### Close all splits but the current one
:only
#### Close all tabs but the current one
:tabonly