all repos — dotfiles @ 15839dc6eb2e297c9fee7520fd3c7fae078faa1a

my *nix dotfiles

nvim: Remove unused code and plugins

Signed-off-by: Anirudh Oppiliappan <x@icyphox.sh>
Anirudh Oppiliappan x@icyphox.sh
Mon, 04 Nov 2019 12:53:05 +0530
commit

15839dc6eb2e297c9fee7520fd3c7fae078faa1a

parent

722a763999362c97a21f08ff81a503e0ed04ed85

1 files changed, 0 insertions(+), 23 deletions(-)

jump to
M config/nvim/init.vimconfig/nvim/init.vim

@@ -9,15 +9,11 @@ call plug#begin()

Plug 'jiangmiao/auto-pairs' Plug 'airblade/vim-gitgutter' Plug 'NerdyPepper/vim-colors-plain', { 'branch': 'duotone' } -Plug 'dag/vim-fish', " plugins for writing {{{ Plug 'reedes/vim-pencil', { 'for': ['text', 'markdown'] } Plug 'reedes/vim-wordy', { 'for': ['text', 'markdown'] } Plug 'junegunn/goyo.vim', { 'for': ['text', 'markdown'] } Plug 'plasticboy/vim-markdown', { 'for': ['text', 'markdown'] } -Plug 'kana/vim-textobj-user', { 'for': ['text', 'markdown'] } -Plug 'junegunn/goyo.vim' -Plug 'reedes/vim-textobj-quote' " }}} Plug 'chriskempson/base16-vim' Plug 'ervandew/supertab'

@@ -26,7 +22,6 @@ Plug 'zah/nim.vim'

Plug 'wellle/targets.vim' Plug 'NerdyPepper/agila.vim' Plug 'w0rp/ale' -" Plug 'skywind3000/vim-keysound' call plug#end() " indentation

@@ -163,10 +158,6 @@ let g:gitgutter_sign_removed = '-'

let g:gitgutter_sign_removed_first_line = '^' let g:gitgutter_sign_modified_removed = '#' -" deoplete -let g:help_in_tabs = 1 -let g:deoplete#enable_at_startup = 1 - nmap <silent> H :let g:help_in_tabs = !g:help_in_tabs<CR " only apply to .txt files

@@ -204,17 +195,3 @@ autocmd!

autocmd FileType markdown,mkd call pencil#init({'wrap': 'hard', 'autoformat': 0}) augroup END -" keysound -let g:keysound_enable = 1 -let g:keysound_volume = 1000 -let g:keysound_py_version = 3 -let g:keysound_theme = 'default' - -" textobj_quote -augroup textobj_quote - autocmd! - autocmd FileType markdown call textobj#quote#init({'educate': 1}) - autocmd FileType textile call textobj#quote#init({'educate': 1}) - autocmd FileType text call textobj#quote#init({'educate': 1}) -augroup END -