Skip to content

Instantly share code, notes, and snippets.

@kfiresmith
Created April 18, 2021 23:53
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 kfiresmith/8fedf13292c6b67a0695ace1246778c9 to your computer and use it in GitHub Desktop.
Save kfiresmith/8fedf13292c6b67a0695ace1246778c9 to your computer and use it in GitHub Desktop.
vimrc-laptop
" tabstop: Width of tab character
" softtabstop: Fine tunes the amount of white space to be added
" shiftwidth Determines the amount of whitespace to add in normal mode
" expandtab: When on uses space instead of tabs
set tabstop =2
set softtabstop =2
set shiftwidth =2
set expandtab
set autoindent
set smartindent
" set number
set ruler
set visualbell
set encoding=utf-8
set wrap
set textwidth=100
set laststatus=2
set showmode
set showcmd
set smartcase
set showmatch
set t_Co=256
set background=dark
let g:solarized_termcolors=256
let g:solarized_termtrans=1
colorscheme delek
hi Comment ctermfg=130
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment