Created
November 15, 2019 03:20
-
-
Save apisandipas/5f47a880895dff109286fc68ce90bc18 to your computer and use it in GitHub Desktop.
.vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""""""""""""""""""""""""""""""""""""" | |
" .__ " | |
" ___ _|__| ____________ ____ " | |
" \ \/ / |/ \_ __ \_/ ___\ " | |
" \ /| | Y Y \ | \/\ \___ " | |
" /\ \_/ |__|__|_| /__| \___ > " | |
" \/ \/ \/ " | |
" " | |
"""""""""""""""""""""""""""""""""""""" | |
" Set variable for platform | |
let uname = substitute(system('uname'), '\n', '', '') | |
""" Load plugins | |
call plug#begin('~/.vim/plugged/') | |
Plug 'tpope/vim-sensible' | |
Plug 'scrooloose/nerdtree' | |
Plug 'scrooloose/nerdcommenter' | |
Plug 'prettier/vim-prettier', { 'do': 'yarn install' } | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
if uname == 'Darwin' | |
Plug 'gertjanreynaert/cobalt2-vim-theme' | |
elseif uname == 'Linux' | |
Plug 'chriskempson/base16-vim' | |
endif | |
call plug#end() | |
""" Appearance | |
if uname == 'Darwin' " Set colorscheme on MacOS | |
colorscheme cobalt2 | |
elseif uname == 'Linux' | |
colorscheme base16-ocean " Set colorscheme on Linux | |
endif | |
syntax enable " Enable syntax hightlighting | |
filetype plugin indent on " Enable filtype detection and indent plugin | |
set cursorline " Highlight currentline | |
set autoread " Autoreload this file in vim if it was changed outof vim | |
""" Basic Behavior | |
set number " show line numbers | |
set relativenumber " show reltive line numbers | |
set wrap " wrap lines | |
set encoding=utf-8 " set encoding to UTF-8 | |
set mouse=a " enablel mouse support | |
set wildmenu " visual autocomplete for commend menu | |
set lazyredraw " redraw screen only when we need to | |
set showmatch " hightlight matching parens and brackets | |
set laststatus=2 " always show statusline | |
set ruler " show line and col number of the cursor | |
set noswapfile " disable swap-files | |
set noerrorbells " disable the goddamn bell | |
set visualbell " blink the curror instead of beeping | |
set hidden " allow buffers to be switched w/o saving first | |
""" Tab Settings | |
set tabstop=2 " width of a <TAB> character displays as | |
set expandtab " convert <TAB> key-presses to spaces | |
set shiftwidth=2 " number of spaces to use for each step of auto indent | |
set softtabstop=2 " backspace after pressing <TAB> will remove up this many spaces | |
set autoindent " copy indent from the current line when starting a new line | |
set smartindent " end better autoindent | |
""" Search settings | |
set incsearch " Search as characters are entered | |
set hlsearch " Hightlight matches | |
" Turn off search highlighting with <CR> | |
nnoremap <CR> :nohlsearch<CR><CR> | |
""" Plugin Specific settings | |
let NERDTreeShowHidden=1 " Show hidden files in NERDTree | |
let g:airline_powerline_fonts=1 " Enable powerline fonts | |
let g:airline_theme='base16' " enable airline theme | |
let g:airline#extensions#tabline#enabled=1 " enable airline tabline extention | |
""" Keybindings | |
" Map F5 to list buffers. Just enter buffer # and hit enter | |
map <F5> :buffers<CR>:buffer<Space> | |
" Map F6 to Spellcheck | |
map <F6> :setlocal spell! spelllang=en_us<CR> | |
" Ctrl+N to toggle file view | |
map <C-n> :NERDTreeToggle<CR> | |
" move vertically by visual line (dont skip wrapped lines) | |
nmap j gj | |
nmap k gk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment