- Add .bashrc with powerline-shell, neofetch, and config alias - Add .vimrc with nicer looking vim config - Add .ssh/config with UMICH hosts
18 lines
217 B
VimL
18 lines
217 B
VimL
" Colors
|
|
colorscheme murphy
|
|
syntax enable
|
|
|
|
" Spaces & Tabs
|
|
set tabstop=4
|
|
set softtabstop=4
|
|
set expandtab
|
|
|
|
" UI Config
|
|
set number
|
|
set showcmd
|
|
set cursorline
|
|
filetype indent on
|
|
set wildmenu
|
|
set lazyredraw
|
|
set showmatch
|