From ac03eb1345130178eb9b51b38753b402018d7a3e Mon Sep 17 00:00:00 2001 From: Babis Babalis Date: Sun, 24 Jan 2016 22:03:42 +0200 Subject: [PATCH 1/3] updated vimrc for matching my needs a bit better. --- vimrc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/vimrc b/vimrc index 44d4b1d..d6c116f 100644 --- a/vimrc +++ b/vimrc @@ -26,26 +26,28 @@ set shiftwidth=2 "How many columns text is indented with the re set softtabstop=2 "Duh? set tabstop=2 "How many columns a tab counts for -set history=1000 "Keep 150 lines of command line history +set history=10000 "Keep 150 lines of command line history set ruler "Show the cursor position all the time set showcmd "Display incomplete commands set incsearch "Do incremental searching set ignorecase "Make searches case-insensitive. set smartcase "Unless there is a capital letter -colorscheme codeschool +colorscheme molokai "codeschool let mapleader="," " Display tabs and trailing spaces visually set list listchars=tab:\ \ ,trail:ยท -"set colorcolumn=0 "Disable max chars column +set colorcolumn=80 "Disable max chars column filetype on "Enable filetype detection filetype indent on "Enable filetype-specific indenting filetype plugin on "Enable filetype-specific plugins filetype indent plugin on +set encoding=utf8 +set paste set omnifunc=syntaxcomplete#Complete From f133985daac7f8705a781a1976e06deca9521bb6 Mon Sep 17 00:00:00 2001 From: Babis Babalis Date: Fri, 29 Jul 2016 19:41:06 +0300 Subject: [PATCH 2/3] vimrc has been updated with 4 spaces/tab instead of 2. --- vimrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vimrc b/vimrc index d6c116f..7eeea2b 100644 --- a/vimrc +++ b/vimrc @@ -22,9 +22,9 @@ set visualbell "No sounds set autoread "Reload files changed outside vim set expandtab "Use spaces for tab at insert mode -set shiftwidth=2 "How many columns text is indented with the reindent operations -set softtabstop=2 "Duh? -set tabstop=2 "How many columns a tab counts for +set shiftwidth=4 "How many columns text is indented with the reindent operations +set softtabstop=4 "Duh? +set tabstop=4 "How many columns a tab counts for set history=10000 "Keep 150 lines of command line history set ruler "Show the cursor position all the time From 72fcf7926c46c389562ad2189a4e4d57c7b04b6b Mon Sep 17 00:00:00 2001 From: Babis Babalis Date: Fri, 17 Nov 2017 14:59:34 +0200 Subject: [PATCH 3/3] Update vimrc --- vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/vimrc b/vimrc index 7eeea2b..5814652 100644 --- a/vimrc +++ b/vimrc @@ -32,6 +32,7 @@ set showcmd "Display incomplete commands set incsearch "Do incremental searching set ignorecase "Make searches case-insensitive. set smartcase "Unless there is a capital letter +set hlsearch "Highlight each search match colorscheme molokai "codeschool