Skip to content

Instantly share code, notes, and snippets.

@redgluten
Created October 10, 2015 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save redgluten/41e70b8fd242b79a7a1a to your computer and use it in GitHub Desktop.
Save redgluten/41e70b8fd242b79a7a1a to your computer and use it in GitHub Desktop.
" Syntax highlighting
" Enable syntax highighting
syntax enable
" 256 colours, please
set t_Co=256
" Enable line numbers on startup
set number
highlight LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE gui=NONE guifg=DarkGrey guibg=NONE
" Tabs, indentation and lines
filetype plugin indent on
" 4 spaces please
set expandtab
set shiftwidth=4
set tabstop=4
set softtabstop=4
" Round indent to nearest multiple of 4
set shiftround
" No line-wrapping
set nowrap
" Interactions
" Start scrolling slightly before the cursor reaches an edge
set scrolloff=3
set sidescrolloff=5
" Scroll sideways a character at a time, rather than a screen at a time
set sidescroll=1
" Backspace behaviour
set nocompatible
set backspace=2
" Visual decorations
" Show status line
set laststatus=2
" Show what mode you’re currently in
set showmode
" Show what commands you’re typing
set showcmd
" Allow modelines
set modeline
" Show current line and column position in file
set ruler
" Show file title in terminal tab
set title
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment