From 68213dfb210f275a976f2e2db3897f89e675a149 Mon Sep 17 00:00:00 2001 From: Elliot Schep Date: Thu, 16 Feb 2017 23:24:21 +0100 Subject: [PATCH 1/4] [major(?)] Added vim logo On the Opera browser's (http://www.opera.com/) speed dial, you can set images as "logo's" for a website. This image is a nice logo. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 489ec5f9..a1b2ba91 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +![VIM](https://camo.githubusercontent.com/bec48ea0e886e5489a8819486bf74075fe626067/68747470733a2f2f7261772e6769746875622e636f6d2f656c6d636173742f656c6d2d76696d2f6d61737465722f73637265656e73686f74732f6c6f676f2e706e67) + # The Ultimate vimrc Over the last 8 years I have used and tweaked Vim. This is my Ultimate vimrc. From 1b18f20cf1ba6a94a29ce85281d379bc43adac6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Del=C3=A9pine?= Date: Mon, 6 Mar 2017 09:53:46 +0100 Subject: [PATCH 2/4] Wording: Fix typo in the readme file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 489ec5f9..b0acbb3d 100644 --- a/README.md +++ b/README.md @@ -310,5 +310,5 @@ Vimscript mappings: ## How to uninstall Do following: * Remove `~/.vim_runtime` -* Remove any lines that refernce `.vim_runtime` in your `~/.vimrc` +* Remove any lines that reference `.vim_runtime` in your `~/.vimrc` From a35351a21b1be5b5b791c30d3fae83497825b952 Mon Sep 17 00:00:00 2001 From: weiyang Date: Sat, 11 Mar 2017 18:41:34 +0800 Subject: [PATCH 3/4] [tmux] set 'termguicolors' when running nvim Signed-off-by: weiyang --- vimrcs/filetypes.vim | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vimrcs/filetypes.vim b/vimrcs/filetypes.vim index 8c4eb9db..030cd497 100644 --- a/vimrcs/filetypes.vim +++ b/vimrcs/filetypes.vim @@ -63,5 +63,9 @@ au FileType gitcommit call setpos('.', [0, 1, 1, 0]) " => Shell section """""""""""""""""""""""""""""" if exists('$TMUX') - set term=screen-256color + if has('nvim') + set termguicolors + else + set term=screen-256color + endif endif From 6b606a73ac377b9936c80cccf56a89a002bafa7c Mon Sep 17 00:00:00 2001 From: Juil Yoon Date: Sat, 11 Mar 2017 22:18:41 -0500 Subject: [PATCH 4/4] Update link to Source Code Pro by Adobe. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 489ec5f9..41695972 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ The awesome version includes a lot of great plugins, configurations and color sc git clone https://github.com/amix/vimrc.git ~/.vim_runtime sh ~/.vim_runtime/install_awesome_vimrc.sh -I also recommend using [Source Code Pro font from Adobe](http://store1.adobe.com/cfusion/store/html/index.cfm?event=displayFontPackage&code=1960) (it's free and awesome font for writing and programming). The Awesome vimrc is already setup to try to use it +I also recommend using [Source Code Pro font from Adobe](https://typekit.com/fonts/source-code-pro) (it's free and awesome font for writing and programming). The Awesome vimrc is already setup to try to use it ## How to install the Basic version? The basic version is basically just one file and no plugins. You can check out [basic.vim](https://github.com/amix/vimrc/blob/master/vimrcs/basic.vim).