From da55ba19d86cae6d8bf690cef8881bd3c9a8daa7 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Fri, 3 Jun 2016 11:35:28 +0100 Subject: [vimrc] Remove base16 colorscheme --- vim/.vimrc | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'vim') diff --git a/vim/.vimrc b/vim/.vimrc index 7a67b9b..f4cd573 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -2,15 +2,14 @@ let mapleader = " " let maplocalleader = "\\" - "" Plugins call plug#begin('~/.vim/plugged') +Plug 'dhruvasagar/vim-table-mode' Plug 'AndrewRadev/splitjoin.vim' Plug 'SirVer/ultisnips' Plug 'airblade/vim-gitgutter' Plug 'altercation/vim-colors-solarized' Plug 'beloglazov/vim-online-thesaurus' -Plug 'chriskempson/base16-vim' Plug 'christoomey/vim-tmux-navigator' Plug 'critiqjo/lldb.nvim' Plug 'holomorph/vim-freefem' @@ -38,6 +37,7 @@ Plug 'sjl/Gundo.vim', { 'on' : 'GundoToggle' } Plug 'terryma/vim-multiple-cursors' Plug 'tomasr/molokai' Plug 'tommcdo/vim-exchange' +Plug 'tpope/vim-abolish' Plug 'tpope/vim-commentary' Plug 'tpope/vim-dispatch' Plug 'tpope/vim-eunuch' @@ -214,7 +214,8 @@ set tabstop=4 set softtabstop=4 set shiftwidth=4 set showcmd -set nofoldenable +" set nofoldenable +set foldmethod=marker set noswapfile set nowritebackup set undofile @@ -231,7 +232,7 @@ set hidden set fo+=or silent! set breakindent let &showbreak='--> ' -" set clipboard=unnamedplus +set clipboard=unnamedplus " set spellfile="$HOME/.vim/spell/en.utf-8.add" if !has("nvim") set encoding=utf-8 @@ -242,7 +243,7 @@ endif nnoremap w :w! nnoremap q :q! nnoremap d :bd! -nnoremap t :tabnew +nnoremap n :tabnew nnoremap got :call system('urxvt -cd '.getcwd().' &') nnoremap goT :call system('urxvt -cd '.expand("%:p:h").' &') @@ -253,9 +254,7 @@ nnoremap + za nnoremap h nnoremap fw :%s/\s\+$// - "" Colorscheme -let base16colorspace=256 let g:seoul256_background =235 silent! colo $COLORSCHEME if $BACKGROUND=="dark" @@ -264,13 +263,13 @@ elseif $BACKGROUND=="light" set background=light endif - "" Autocommands augroup vimrc autocmd! au BufNewFile,Bufread /tmp/mutt-* setlocal tw=72 - au BufNewFile,BufRead *.edp comp freefem au BufNewFile,BufRead *.geo setf gmsh + au BufNewFile,BufRead *.pde setf freefem au FileType gmsh set makeprg=gmsh\ % + au FileType freefem comp freefem au FileType dirvish set relativenumber augroup END -- cgit v1.2.3