This file contains hidden or 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
| " This is a beginners .vimrc or init.vim file | |
| " with sane defaults so you can be productive at the start. | |
| " Not designed to work with Neovim. | |
| " Sane defaults. | |
| source $VIMRUNTIME/defaults.vim | |
| set mouse=a " Enable mouse | |
| set clipboard+=unnamed,unnamedplus " Use desktop's clipboard | |
| set hidden " Allow switch buffers if current not saved | |
| set noswapfile autoread " Swap file annoyance. Use git. |
This file contains hidden or 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
| wget -qO - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
| cat <<EOF | sudo tee /etc/apt/sources.list.d/google-chrome.list | |
| deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main | |
| EOF | |
| sudo apt update | |
| sudo apt install google-chrome-stable |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # Clear out all previous attempts | |
| rm -rf "/tmp/source-git/" | |
| # Get the dependencies for git, then get openssl | |
| sudo apt-get install build-essential fakeroot dpkg-dev -y | |
| sudo apt-get build-dep git -y | |
| sudo apt-get install libcurl4-openssl-dev -y | |
| mkdir -p "/tmp/source-git/" |