aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2017-10-17 12:44:10 +0200
committerMax Christian Pohle2017-10-17 12:44:10 +0200
commita7b56349f1e37634ff358d963bcf1a8d7857851c (patch)
tree87d1a0a22d2dc4a1d88f1fede70dc01e5a29dfd5
parentb4f8cbbf788092580d52bbc0d57f5929b6235225 (diff)
downloadvim-a7b56349f1e37634ff358d963bcf1a8d7857851c.tar.bz2
vim-a7b56349f1e37634ff358d963bcf1a8d7857851c.zip
Changed default gui font and made cscope more verbose
-rw-r--r--vimrc-full5
1 files changed, 4 insertions, 1 deletions
diff --git a/vimrc-full b/vimrc-full
index a21bd25..c3dd680 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -122,7 +122,7 @@ if has('cscope') " compiled with cscope support?
122 1001menu &Cscope.-Sep1- 122 1001menu &Cscope.-Sep1-
123 \ : 123 \ :
124 1001menu &Cscope.create\ and\ add\ database 124 1001menu &Cscope.create\ and\ add\ database
125 \ :cscope kill -1<CR>:execute '!find -regex ".*\.\(c\\|h\\|cpp\\|cxx\\|hh\\|hpp\\|hxx\)$" <bar> cscope -i- -b -q'<CR>:cscope add .<CR> 125 \ :cscope kill -1<CR>:execute '!find -type f -regex ".*\.\(c\\|h\\|cpp\\|cxx\\|hh\\|hpp\\|hxx\)$" <bar> cscope -i- -b -q -u -v'<CR>:cscope add .<CR>
126 1001menu &Cscope.-Sep2- 126 1001menu &Cscope.-Sep2-
127 \ : 127 \ :
128 1001menu &Cscope.add\ \. 128 1001menu &Cscope.add\ \.
@@ -157,6 +157,7 @@ if has("gui_running")
157 157
158 " its possible to define alternative fonts (order matters) 158 " its possible to define alternative fonts (order matters)
159 set guifont= 159 set guifont=
160 set guifont+=FuraMono\ Nerd\ Font\ Mono\ Medium\ 11
160 set guifont+=Source\ Code\ Pro\ for\ Powerline\ SemiBold\ 10 161 set guifont+=Source\ Code\ Pro\ for\ Powerline\ SemiBold\ 10
161 set guifont+=LiterationMono\ Nerd\ Font\ Mono\ 10 162 set guifont+=LiterationMono\ Nerd\ Font\ Mono\ 10
162 set guifont+=RobotoMono\ Nerd\ Font\ Medium\ 10 163 set guifont+=RobotoMono\ Nerd\ Font\ Medium\ 10
@@ -500,6 +501,8 @@ if has("autocmd")
500 501
501 menu &Git.&Display\ last\ changes 502 menu &Git.&Display\ last\ changes
502 \ :let g:signify_vcs_cmds={'git': 'git diff --no-color --no-ext-diff -U0 HEAD^ -- %f'}<CR>:SignifyRefresh<CR> 503 \ :let g:signify_vcs_cmds={'git': 'git diff --no-color --no-ext-diff -U0 HEAD^ -- %f'}<CR>:SignifyRefresh<CR>
504 menu &Git.&Display\ significance\ of\ changes
505 \ :!git diff --stat HEAD~1..HEAD
503 506
504 menu &Match.Clear\ All\ Matches 507 menu &Match.Clear\ All\ Matches
505 \<Tab><F6> 508 \<Tab><F6>
..