From c6a2af6731f1cf917e6eac0cd461ec5669ad5d8b Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Thu, 19 Jul 2018 03:15:32 +0200 Subject: nvim/init: remove things I don't use for now MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Johannes Löthberg --- nvim/init.vim | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/nvim/init.vim b/nvim/init.vim index 97f4f05..de265fc 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -4,17 +4,7 @@ call plug#begin(expand('$XDG_CONFIG_HOME/nvim/plugs')) -Plug 'Shougo/denite.nvim' " unite.vim for nvim -Plug 'Shougo/neomru.vim' " MRU plugin for denite -Plug 'mattn/emmet-vim' " Emmet-like snippet system -Plug 'tommcdo/vim-exchange' " Easy text exchange operator -Plug 'tpope/vim-fugitive' " Git wrapper -Plug 'mbbill/undotree' -Plug 'will133/vim-dirdiff' - -Plug 'dhruvasagar/vim-table-mode' Plug 'rust-lang/rust.vim' -Plug 'ledger/vim-ledger' Plug 'tpope/vim-git' Plug 'chriskempson/base16-vim' @@ -67,12 +57,8 @@ let g:rst_syntax_code_list = ['vim', 'c', 'cpp', 'python', 'sh'] " Mappings " -" Toggle spell checking -nmap s :set spell! - nmap / :nohlsearch -cmap w!! w !sudo tee % >/dev/null " Easier window moving map h map j @@ -118,10 +104,6 @@ set statusline+=%#identifier# set statusline+=%r set statusline+=%* -if exists('g:loaded_fugitive') - set statusline+=%{fugitive#statusline()} -endif - " Show a warning if file format isn’t unix set statusline+=%#warningmsg# set statusline+=%{&ff!='unix'?'['.&ff.']':''} -- cgit v1.2.3-54-g00ecf