A bash file to install apps and changes settings when you install a fresh copy of Ubuntu
Simply follow these steps:
- Download the bash file
- Open a new terminal
- cd to the download directory
- run bash file:
. ubuntu_setup.bash
Clone ubuntu_setup on Windows. Do followings in PowerShell.
git clone https://github.com/kanishkegb/ubuntu-setup.git
cd ubuntu-setup
git submodule update --init
cd fonts
powershell -ExecutionPolicy ByPass -File .\install.ps1
- First install Vim
sudo apt-get install vim
- Plugin Manager
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
- Install plugins
It might be required to press
vim :source ~/.vimrc :PlugInstall
q
at the end of the installation process.
Setup Shared Folder - link
- Add a shared folder on Windows through the VB menu (C:\Documents\shared_vm)
- On Ubuntu, create a directory with the same name (~\Documents\shared_vm)
- In a terminal, cd to Documents
- Type: sudo mount -t vboxsf -o uid=$UID,gid=$(id -g) shared_vm shared_vm/
alias ga='git add'
alias gst='git status'
alias gd='git diff'
alias gco='git checkout'
alias gb='git branch'
alias gl='git pull'
alias gp='git push'
alias gcam='git commit -am'