aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2017-12-11 00:55:04 +0100
committerMax Christian Pohle2017-12-11 00:55:04 +0100
commite4367a3254756d66d8d62500577dee81e0a316bb (patch)
tree212a5012cc220342867f4a9f96985ca10dd8b7c8
parentb0ca02d62d1c4dce205e71e6336ca1484c56e5db (diff)
downloadvim-e4367a3254756d66d8d62500577dee81e0a316bb.tar.bz2
vim-e4367a3254756d66d8d62500577dee81e0a316bb.zip
Fixed symbols, added new screenshot
-rw-r--r--doc/coderonline-vim.pngbin756865 -> 91868 bytes
-rw-r--r--gtk-3.0.css2
-rw-r--r--vimrc-full4
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/coderonline-vim.png b/doc/coderonline-vim.png
index a744be5..156ff3a 100644
--- a/doc/coderonline-vim.png
+++ b/doc/coderonline-vim.png
Binary files differ
diff --git a/gtk-3.0.css b/gtk-3.0.css
index d8d5c68..04e8fc0 100644
--- a/gtk-3.0.css
+++ b/gtk-3.0.css
@@ -48,7 +48,7 @@ menu menuitem:backdrop, menu menuitem:backdrop:hover
48window#vim-main-window > box 48window#vim-main-window > box
49{ 49{
50 background:#fff; 50 background:#fff;
51 border:10px solid #fff; 51 border:2px solid #fff;
52} 52}
53 53
54/* within window > box ... */ 54/* within window > box ... */
diff --git a/vimrc-full b/vimrc-full
index deb7c7c..11ca80e 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -791,8 +791,8 @@ let g:lightline = {
791 \ 'buffer_alt': '%{expand("#:t")}', 791 \ 'buffer_alt': '%{expand("#:t")}',
792 \ 'servername': ' %{v:servername}', 792 \ 'servername': ' %{v:servername}',
793 \ 'sessionname': '%{v:this_session}', 793 \ 'sessionname': '%{v:this_session}',
794 \ 'gitbranch': ' %{fugitive#head()}', 794 \ 'gitbranch': ' %{fugitive#head()}',
795 \ 'tabnumber': '🗗 %{tabpagenr()}/%{tabpagenr("$")}', 795 \ 'tabnumber': " %{tabpagenr()}/%{tabpagenr('$')}",
796 \ 'readonly': '%{&readonly ? "" : ""}' 796 \ 'readonly': '%{&readonly ? "" : ""}'
797 \ }, 797 \ },
798 \ 'component_expand': { 798 \ 'component_expand': {
..