Skip to content

Instantly share code, notes, and snippets.

@devnowcommit
Created February 25, 2019 06:00
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 devnowcommit/8bb869ba0eaa2c80e6d5f02721d5302f to your computer and use it in GitHub Desktop.
Save devnowcommit/8bb869ba0eaa2c80e6d5f02721d5302f to your computer and use it in GitHub Desktop.
Vim config.
syntax on " Color syntax on
colorscheme desert " Scheme of color syntax
set tabstop=2 " The width of a tab is set to 2
" Still it is a \t; it is just that
" vim will interpret it to be having
" a width of 2
set shiftwidth=2 " Indents will have a width of 2
set softtabstop=2 " Sets the number of columns for a tab
set expandtab " Expand tabs to spaces
set nowrap " No wrapping
set laststatus=2 " Adds powerline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment