-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathubuntu_config.sh
More file actions
40 lines (32 loc) · 1.06 KB
/
Copy pathubuntu_config.sh
File metadata and controls
40 lines (32 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Install neovim
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:neovim-ppa/stable
sudo apt0get install neovim
sudo apt-get install python-dev python-pip python3-dev python3-pip
sudo update-alternatives --install /usr/bin/vi vi /usr/bin/nvim 60
sudo update-alternatives --config vi
sudo update-alternatives --install /usr/bin/vim vim /usr/bin/nvim 60
sudo update-alternatives --config vim
sudo update-alternatives --install /usr/bin/editor editor /usr/bin/nvim 60
sudo update-alternatives --config editor
# Install zsh
sudo apt install zsh
chsh -s $(which zsh)
# Install oh-my-zsh
sudo apt install curl
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# Install Powerline Fonts
sudo apt-get install fonts-powerline
ln -s ~/.zshrc ~/repos/config/.zshrc
# Install universal-ctags
# Clone this to ~/repos or wherever you want really
pushd ~/repos
git clone git@github.com:universal-ctags/ctags.git
pushd ~/repos/ctags
sudo apt install autoconf pkg-config
./autogen.sh
./configure
make
sudo make install
popd
popd