Skip to content

Instantly share code, notes, and snippets.

@mcotton
Last active December 6, 2019 01:49
Show Gist options
  • Save mcotton/39080b5366b2e3f2e758d06da8e5eec2 to your computer and use it in GitHub Desktop.
Save mcotton/39080b5366b2e3f2e758d06da8e5eec2 to your computer and use it in GitHub Desktop.
#.bashrc
alias disableGUI='sudo systemctl set-default multi-user.target'
alias enableGUI='sudo systemctl set-default graphical.target'
alias startGUI='sudo systemctl start gdm3.service'
alias stopGUI='sudo systemctl stop gdm3.service'
#.vimrc
syntax enable
syntax on
set background=dark
set nowrap
set autoindent
set shiftwidth=4
set expandtab
set tabstop=4
set softtabstop=4
set pastetoggle=<F12>
au BufNewFile,BufRead *.ejs set filetype=html
# installation commands
/usr/bin/setxkbmap -option "caps:escape"
sudo apt update
sudo apt upgrade
sudo apt install vim git htop net-tools curl wget -y
sudo apt install python3-pip
sudo apt install ffmpeg imagemagick -y
sudo apt install docker.io
sudo apt install docker-compose
curl https://raw.githubusercontent.com/jesseduffield/lazydocker/master/scripts/install_update_linux.sh | bash
sudo usermod -aG docker mcotton
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment