sudo apt-get update
sudo apt-get upgrade
# --------------------------------------------------
# Basic programs
# --------------------------------------------------
sudo apt-get install openssh-server
sudo apt-get install vim
sudo apt-get install git
sudo apt-get install curl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Add sudo wherever needed | |
## list all files in current directory | |
alias ll="ls -alh" | |
## apt shorthands | |
alias sau="sudo apt-get update" | |
alias sai="sudo apt-get install" | |
sar() { | |
sudo apt-get autoremove |
- Open 'Settings' -> 'Universal Access' -> 'Pointing and clicking' -> 'Mouse keys'
- Turn that option ON
- Now you will be able to move cursor with numpad but the speed will be extremely slow.
- Run the following commands in terminal to set a good to do speed :
sudo apt-get install xkbset
xkbset ma 60 10 10 5 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
s = status | |
a = add | |
d = diff | |
dc = diff --cached | |
dd = difftool --tool=vimdiff -y | |
c = commit | |
ps = push | |
pl = pull | |
co = checkout |
- Manager and explorer :
- Package manager : To manage all your sublime packages
- SideBarEnhancements : Gives an extensive menu for renaming, duplicating file etc from the file explorer pane (The left column)
- Themes & Color schemes :
- Monokai Extended
- Predawn
- Theme - Afterglow
- Theme - Asphalt
- Theme - Brogrammer
- Theme - Flatland
- Adapta
- Arc
- Flatabulous
- Nebula
- Numix
- Paper
- Super flat remix (Icon theme)
- Alternatetab (Ungroup windows of same type)
- Applications menu (Windows OS style Applications menu)
- Caffeine (Disable autosuspend)
- Clipboard indicator (Clipboard history)
- Drop down terminal (Alternative to Guake terminal)
- Easyscreencast (Screen recording)
- Laine (Control volume of each application)
- Media keys (Music control buttons on topbar)
- Media player indicator (Music controller for topbar)
- Pixel saver (Brings title bar applications to topbar)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Steps | |
" ===== | |
" 1. Add below content to your .vimrc | |
" 2. Clone vundle : `git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim` | |
" 3. Run :PluginInstall in vim | |
" -------------------------------------------------- | |
" Vundle package manager settings | |
" -------------------------------------------------- |
OlderNewer