Skip to content

Instantly share code, notes, and snippets.

View sbhonde1's full-sized avatar

Sagar Bhonde sbhonde1

  • Manchester, New Hampshire
View GitHub Profile
@sbhonde1
sbhonde1 / .vimrc
Created July 28, 2019 17:19
My .vimrc file template. You can try this as your .vimrc file after backing up yours. The configuration file is located in ~/.vimrc
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on
@sbhonde1
sbhonde1 / .tmux.conf
Created July 28, 2019 17:18
My .tmux.conf file template. You can try this as your .tmux.conf file after backing up yours. The configuration file is located in ~/.tmux.conf.
# scrollback size
set -g history-limit 10000
############
# Keybinds #
############
# Changing ctrl+b to ctrl+a as the command button
unbind C-b
set -g prefix C-a