diff options
author | William Carroll <wpcarro@gmail.com> | 2018-01-08T20·15-0500 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2018-01-08T20·15-0500 |
commit | f43072e5b67b52183c0b2c17c1c14588252a4204 (patch) | |
tree | 128220dedd3c54f329d52289aa10d2946503310d /configs | |
parent | 45ac022da21a76ea38e4d2563d6929324fbd7eba (diff) |
Drop NERDTree plugin in favor of vinegar
Diffstat (limited to 'configs')
-rw-r--r-- | configs/shared/.vimrc | 53 |
1 files changed, 26 insertions, 27 deletions
diff --git a/configs/shared/.vimrc b/configs/shared/.vimrc index 4507faebbd67..4fcd992ac2f3 100644 --- a/configs/shared/.vimrc +++ b/configs/shared/.vimrc @@ -17,6 +17,9 @@ Plugin 'VundleVim/Vundle.vim' " Displays git information in airline. Plugin 'tpope/vim-fugitive' +" easier file navigation +Plugin 'tpope/vim-vinegar' + " Displays git-tracked C*UD ops within gutter. Plugin 'airblade/vim-gitgutter' @@ -29,9 +32,6 @@ Plugin 'mileszs/ack.vim' " JS support Plugin 'pangloss/vim-javascript' -" Visual dir-tree navigation -Plugin 'scrooloose/nerdtree' - " Syntax Highlighting Support Plugin 'lambdatoast/elm.vim' @@ -109,12 +109,32 @@ Plugin 'whatyouhide/vim-gotham' " Transparent encryption + decryption Plugin 'jamessan/vim-gnupg' +" Javascript auto-formatting +Plugin 'prettier/vim-prettier', { + \ 'do': 'yarn install', + \ 'for': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'graphql', 'markdown'] } + +" Support Org mode +Plugin 'jceb/vim-orgmode' + call vundle#end() " required filetype plugin indent on " required " Put your non-Plugin stuff after this line " -- END: Vundle config -- +" Maximize the current window +" Similar to Tmux mapping alt-z in my tmux.conf +nnoremap t% :tab sp<CR> + + +" Prettier configuration +let g:prettier#exec_cmd_async = 1 +" force Prettier to run on files even without the @format pragma +let g:prettier#autoformat = 0 +autocmd BufWritePre *.js,*.jsx,*.mjs,*.ts,*.tsx,*.css,*.less,*.scss,*.json,*.graphql,*.md PrettierAsync + + " Basic settings " Thin cursor on INSERT mode if has('nvim') @@ -129,7 +149,7 @@ set shiftwidth=2 set background=dark syntax enable -colorscheme gotham +colorscheme material if has('termguicolors') set termguicolors @@ -234,10 +254,10 @@ let g:alchemist#elixir_erlang_src = '/usr/local/share/src' " Airline Settings " Enables the list of buffers. -let g:airline#extensions#tabline#enabled = 1 +let g:airline#extensions#tabline#enabled = 0 " Buffer numbers alongside files -let g:airline#extensions#tabline#buffer_nr_show = 1 +let g:airline#extensions#tabline#buffer_nr_show = 0 " Shows the filename only. let g:airline#extensions#tabline#fnamemod = ':t' @@ -416,12 +436,6 @@ nnoremap <silent> <C-k> :TmuxNavigateUp<cr> nnoremap <silent> <C-l> :TmuxNavigateRight<cr> -" Buffer creation and management -" Buffer movement -nnoremap <Tab> :1bnext<CR> -nnoremap <S-Tab> :1bprevious<CR> - - " make Y do what is intuitive given: " D: deletes until EOL " C: changes until EOL @@ -434,10 +448,6 @@ nnoremap Y y$ " nnoremap <C-k> k<C-y> -" Shorter binding for window rotations -nnoremap <C-r> <C-w><C-r> - - " remap redo key that is eclipsed by `rotate` currently nnoremap U :redo<CR> @@ -512,17 +522,6 @@ nnoremap <leader>v9 :resize 45<CR> nnoremap <leader>v0 :resize 50<CR> -" NERDTree settings -" Show hidden files by default. (Toggle with capital 'i') -let NERDTreeShowHidden = 1 - -" View Directory tree with ctrl + n -nnoremap <leader>n :NERDTreeToggle<CR> - -" View open buffer location in tree. -nnoremap <leader>N :NERDTreeFind<CR> - - " BOL and EOL nnoremap H ^ vnoremap H ^ |