aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc10
1 files changed, 6 insertions, 4 deletions
diff --git a/vimrc b/vimrc
index f3b1833..3d96799 100644
--- a/vimrc
+++ b/vimrc
@@ -1,6 +1,7 @@
1"======================================================================================================================= 1"=======================================================================================================================
2" GENERAL 2" GENERAL
3"======================================================================================================================= 3"=======================================================================================================================
4set termguicolors
4 5
5filetype on 6filetype on
6filetype plugin on 7filetype plugin on
@@ -24,9 +25,10 @@ set hlsearch incsearch | " highlight pattern while entering i
24" set cindent cinoptions+=(0 | " indents at the level of parentheses -- if desired 25" set cindent cinoptions+=(0 | " indents at the level of parentheses -- if desired
25set expandtab | " replace tabs with spaces 26set expandtab | " replace tabs with spaces
26set textwidth=0 | " should be set file type specific, colorcolumns is there to assist anyways 27set textwidth=0 | " should be set file type specific, colorcolumns is there to assist anyways
27set tabstop=4 28
28set shiftwidth=4 29set tabstop=2 | " I am sorry, but 2 is simply better
29set softtabstop=4 30set shiftwidth=2 | " .
31set softtabstop=2 | " .
30 32
31"======================================================================================================================= 33"=======================================================================================================================
32" PATH -- where to search for includes (e.g. `gf` or `:find`) 34" PATH -- where to search for includes (e.g. `gf` or `:find`)
@@ -386,4 +388,4 @@ augroup END
386 388
387"======================================================================================================================= 389"=======================================================================================================================
388" v modeline, do not chnage v 390" v modeline, do not chnage v
389" vim: noai:ts=2:sw=2:sts=2 iskeyword+=\:,\<,\>,\-,\& number 391" vim: noai:ts=2:sw=2:sts=2 iskeyword+=\:\<,\>,\-,\& number
..