summaryrefslogtreecommitdiff
path: root/vim/.vimrc
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2019-11-27 08:53:03 +0100
committerEkaitz Zarraga <ekaitz@elenq.tech>2019-11-27 08:53:03 +0100
commit3389e4fdde8fd612fd8a54db28d97f62ca729a7f (patch)
tree5168cfef88ccec6c111b33ea7f73c7230418e405 /vim/.vimrc
parent34bd59d19e3a9e057c40869c89b1a4af88f04c1e (diff)
Remove vim config, it's old and not in use
Diffstat (limited to 'vim/.vimrc')
-rw-r--r--vim/.vimrc74
1 files changed, 0 insertions, 74 deletions
diff --git a/vim/.vimrc b/vim/.vimrc
deleted file mode 100644
index 2104937..0000000
--- a/vim/.vimrc
+++ /dev/null
@@ -1,74 +0,0 @@
-
-" Vundle stuff ----------------------------------------------
-set nocompatible
-filetype off
-set rtp+=~/.vim/bundle/Vundle.vim
-call vundle#begin()
-
-" let Vundle manage Vundle, required
-Plugin 'VundleVim/Vundle.vim'
-
-" Post to Wordpress using MarkDown
-Plugin 'ekaitz-zarraga/droWMark'
-
-" Add plugins here
-
-call vundle#end() " required
-" / Vundle stuff end ----------------------------------------
-
-" Allow backspace always
-set backspace=indent,eol,start
-
-" Activate syntax highlighting by default
-syntax on
-
-" Different config for each filetype
-filetype plugin on
-
-" Show trailing spaces
-highlight ExtraWhitespace ctermbg=red guibg=red
-match ExtraWhitespace /\s\+$/
-autocmd BufWinEnter * match ExtraWhitespace /\s\+$/
-autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/
-autocmd InsertLeave * match ExtraWhitespace /\s\+$/
-autocmd BufWinLeave * call clearmatches()
-autocmd ColorScheme * highlight ExtraWhitespace ctermbg=red guibg=red
-
-
-" Clear trailing spaces on <F2>
-function TrimWhiteSpace()
- %s/\s*$//
- ''
-:endfunction
-nnoremap <F2> :call TrimWhiteSpace()<CR>
-
-" Fold
-set foldmethod=indent
-set foldlevelstart=99
-
-" HighLight search and map CarrierReturn to remove highlight
-set hlsearch
-nnoremap <CR> :noh<CR><CR>
-
-" Ignore Case in search
-set ignorecase
-set smartcase
-
-" Always show tabline (0=never, 1=when there are at least 2 tabs, 2=always)
-set showtabline=1
-
-" Mouse support
-set mouse=a
-
-" Set default colorscheme but dark comments -> Torte
-colorscheme torte
-
-" Default tabs
-set tabstop=4 softtabstop=0 expandtab shiftwidth=4
-set autoindent
-
-" Change buffers without needing to save
-set hidden
-
-" Explore configured to show tree
-let g:netrw_liststyle= 3