Last active
August 18, 2019 05:33
-
-
Save rickithadi/315abb0dbbd60f5b22b57177a8efac69 to your computer and use it in GitHub Desktop.
my vim rc
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
" __ _(_)_ __ ___ _ __ _ | |
" \ \ / / | '_ ` _ \| '__/ __| | |
" \ V /| | | | | | | | | (__ | |
" \_/ |_|_| |_| |_|_| \___| | |
let mapleader = " " | |
call plug#begin('~/.config/nvim/bundle') | |
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } | |
Plug 'sheerun/vim-polyglot' | |
Plug 'prettier/vim-prettier', { 'do': 'npm install', 'for': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'graphql', 'markdown', 'vue', | |
'yaml', 'html'] } | |
Plug 'junegunn/vim-easy-align' | |
Plug 'junegunn/vim-github-dashboard' | |
Plug 'tpope/vim-fugitive' | |
Plug 'iandingx/leetcode.vim' | |
Plug 'ryanoasis/vim-devicons' | |
Plug 'scrooloose/nerdtree' | |
Plug 'tpope/vim-vinegar' | |
Plug 'tpope/vim-surround' | |
Plug 'vim-airline/vim-airline' | |
Plug 'altercation/vim-colors-solarized' | |
Plug 'vim-airline/vim-airline-themes' | |
Plug 'flazz/vim-colorschemes' | |
Plug 'w0rp/ale' | |
Plug 'kien/rainbow_parentheses.vim' | |
Plug 'ap/vim-css-color' | |
Plug 'tpope/vim-surround' | |
Plug 'scrooloose/nerdcommenter' | |
Plug 'christoomey/vim-tmux-navigator' | |
Plug 'zchee/deoplete-jedi' | |
Plug 'trevordmiller/nova-vim' | |
Plug 'pangloss/vim-javascript' | |
Plug 'mxw/vim-jsx' | |
Plug 'w0rp/ale' | |
" call PlugInstall to install new plugins | |
call plug#end() | |
let g:prettier#exec_cmd_async = 1 | |
" basics | |
filetype plugin indent on | |
syntax on set number | |
set relativenumber | |
set incsearch | |
set ignorecase | |
set smartcase | |
set nohlsearch | |
set tabstop=4 | |
set softtabstop=0 | |
set shiftwidth=4 | |
set expandtab | |
set nobackup | |
set noswapfile | |
set nowrap | |
let g:leetcode_solution_filetype='javascript' | |
let g:leetcode_username='rickithadi' | |
" preferences | |
let g:airline#extensions#tabline#enabled = 1 | |
let g:airline#extensions#tabline#buffer_nr_show = 1 | |
inoremap jk <ESC> | |
set pastetoggle=<F2> | |
" j/k will move virtual lines (lines that wrap) | |
noremap <silent> <expr> j (v:count == 0 ? 'gj' : 'j') | |
noremap <silent> <expr> k (v:count == 0 ? 'gk' : 'k') | |
" Stay in visual mode when indenting. You will never have to run gv after | |
" performing an indentation. | |
vnoremap < <gv | |
vnoremap > >gv | |
" Make Y yank everything from the cursor to the end of the line. This makes Y | |
" act more like C or D because by default, Y yanks the current line (i.e. the | |
" same as yy). | |
noremap Y y$ | |
" navigate split screens easily | |
nmap <silent> <c-k> :wincmd k<CR> | |
nmap <silent> <c-j> :wincmd j<CR> | |
nmap <silent> <c-h> :wincmd h<CR> | |
nmap <silent> <c-l> :wincmd l<CR> | |
" change spacing for language specific | |
autocmd Filetype javascript setlocal ts=2 sts=2 sw=2 | |
" plugin settings | |
" deoplete | |
let g:deoplete#enable_at_startup = 1 | |
" use tab to forward cycle | |
inoremap <silent><expr><tab> pumvisible() ? "\<c-n>" : "\<tab>" | |
" use tab to backward cycle | |
inoremap <silent><expr><s-tab> pumvisible() ? "\<c-p>" : "\<s-tab>" | |
" Close the documentation window when completion is done | |
autocmd InsertLeave,CompleteDone * if pumvisible() == 0 | pclose | endif | |
" Theme | |
syntax enable | |
"let $NVIM_TUI_ENABLE_TRUE_COLOR=1 | |
set termguicolors | |
set background=dark | |
colorscheme gruvbox | |
"NERDTree | |
" How can I close vim if the only window left open is a NERDTree? | |
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif | |
" toggle NERDTree | |
map <C-n> :NERDTreeToggle<CR> | |
let g:NERDTreeChDirMode=2 | |
let g:NERDTreeIgnore=['\.rbc$', '\~$', '\.pyc$', '\.db$', '\.sqlite$','__pycache__', 'node_modules'] | |
let g:NERDTreeSortOrder=['^__\.py$', '\/$', '*', '\.swp$', '\.bak$', '\~$'] | |
let g:NERDTreeShowBookmarks=1 | |
let g:nerdtree_tabs_focus_on_files=1 | |
let g:NERDTreeMapOpenInTabSilent = '<RightMouse>' | |
set wildignore+=*/tmp/*,*.so,*.swp,*.zip,*.pyc,*.db,*.sqlite | |
" jsx | |
let g:jsx_ext_required = 0 | |
" ale prettier-eslint | |
"""" | |
"let g:ale_fixers = { | |
"\ 'javascript': ['prettier_eslint'], | |
"\} | |
"let g:ale_fix_on_save = 1 | |
"let g:ale_javascript_prettier_eslint_executable = 'prettier-eslint' | |
"let g:ale_javascript_prettier_eslint_use_global = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment