From d1a383353bb5be7f4c20bc8c3758ac72d8fe1edb Mon Sep 17 00:00:00 2001 From: id101010 Date: Wed, 26 Sep 2018 19:44:38 +0200 Subject: [PATCH] Update vimrc --- vimrc | 41 ++--------------------------------------- 1 file changed, 2 insertions(+), 39 deletions(-) diff --git a/vimrc b/vimrc index 8ec5ca2..06e38bc 100644 --- a/vimrc +++ b/vimrc @@ -7,11 +7,6 @@ " \/ |_____|_| |_|_| \___| " " " """"""""""""""""""""""""""""""""""""" -" Install powerline fonts and configure your -" terminal emulator to use them. -" -> https://github.com/powerline/fonts " -" -> Arch linux AUR: powerline-fonts-git -" set nocompatible filetype off @@ -34,31 +29,12 @@ endif " Start Vundle stuff " call vundle#begin() Plugin 'VundleVim/Vundle.vim' - " A pretty statusline, bufferline integration " Plugin 'itchyny/lightline.vim' + " Bufferline plugin " Plugin 'bling/vim-bufferline' - - " everything! " - "Plugin 'ervandew/supertab' - " Glorious colorscheme " Plugin 'nanotech/jellybeans.vim' - - " Super easy commenting, toggle comments etc " - "Plugin 'scrooloose/nerdcommenter' - - " Autoclose - "Plugin 'Townk/vim-autoclose' - - " Git wrapper inside Vim " - "Plugin 'tpope/vim-fugitive' - - "Handle surround chars like " - "Plugin 'tpope/vim-surround' - - " Vim signs (:h signs) for modified lines based off VCS (e.g. Git) " - "Plugin 'mhinz/vim-signify' " Finish Vundle stuff " call vundle#end() @@ -70,18 +46,6 @@ endif filetype plugin indent on -""""""""""""""""""""""""""""""""""""""""" -" Lightline (statusline) configuration " -""""""""""""""""""""""""""""""""""""""""" -"let g:lightline = { -" \ 'colorscheme': 'default', -" \ 'component': { -" \ 'readonly': '%{&readonly?"":""}', -" \ }, -" \ 'separator': { 'left': '', 'right': '' }, -" \ 'subseparator': { 'left': '', 'right': '' } -" \ } -" """"""""""""""""""""""""""""""""""""""""" " Misc configurations " """"""""""""""""""""""""""""""""""""""""" @@ -90,7 +54,7 @@ filetype plugin indent on set cindent set scrolloff=4 -"T abstop, Shiftwith and replace tabs with spaces but not in makefiles " +" Tabstop, Shiftwith and replace tabs with spaces but not in makefiles " set tabstop=4 set shiftwidth=4 set expandtab @@ -126,4 +90,3 @@ set noshowmode " Hide the default mode text (e.g. -- INSERT -- below th "Automaticly reread a file, if file has changed" set autoread -