summaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim')
-rw-r--r--vim/.vimrc8
1 files changed, 8 insertions, 0 deletions
diff --git a/vim/.vimrc b/vim/.vimrc
index 7d2505c..7cb5f6b 100644
--- a/vim/.vimrc
+++ b/vim/.vimrc
@@ -20,3 +20,11 @@ nnoremap <CR> :noh<CR><CR>
" Understand .md as markdown
autocmd BufNewFile,BufRead *.md set ft=markdown
+
+" Get 256 colors
+if $TERM == "xterm-256color"
+ set t_Co=256
+endif
+
+" Ingnore Case in search
+set ignorecase