aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Arctic Ice Studio <development@arcticicestudio.com>2017-01-29 10:27:33 +0100
committerGravatar Arctic Ice Studio <development@arcticicestudio.com>2017-01-29 10:27:33 +0100
commit96fd18a326b1dd3d0094f3ffe13c65c31a83bbb4 (patch)
tree81df99d659c4da41b4e77cc32edc48d11a8d7114 /README.md
parent5b058cbf8760131a344c98e85964433133eb2633 (diff)
downloadnord-vim-96fd18a326b1dd3d0094f3ffe13c65c31a83bbb4.tar.gz
Use "vim" GFM syntax highlighting for code blocks instead of "sh"
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 5312690..872a5a3 100644
--- a/README.md
+++ b/README.md
@@ -49,18 +49,18 @@ Make sure to install one of the currently supported terminal themes listed below
#### Via plugin/runtimepath manager
I recommend to use [`vim-plug`](https://github.com/junegunn/vim-plug).
Add Nord Vim to your `.vimrc`
-```sh
+```vim
Plug 'arcticicestudio/nord-vim'
```
and install via `:PlugInstall`.
You can specify the `develop` branch to install the latest development version.
-```sh
+```vim
Plug 'arcticicestudio/nord-vim', { 'branch': 'develop' }
```
A specific version can be installed via git tags.
-```sh
+```vim
Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.3.0' }
```
@@ -73,7 +73,7 @@ git clone git://github.com/arcticicestudio/nord-vim.git
[`Vundle`](https://github.com/VundleVim/Vundle.vim)
Add Nord Vim to your `.vimrc`
-```sh
+```vim
Plugin 'arcticicestudio/nord-vim'
```
and install via `:PluginInstall`.
@@ -83,18 +83,18 @@ and install via `:PluginInstall`.
### Activation
Use Nord Vim as your default color theme by adding it to your `.vimrc`
-```sh
+```vim
colorscheme nord
```
or change it on-the-fly by running `:colorscheme nord`.
[`vim-plug`](https://github.com/junegunn/vim-plug) also provides options to enable it on-demand for specific languages
-```sh
+```vim
" Activate Nord Vim when editing Java files
Plug 'arcticicestudio/nord-vim', { 'for': 'java' }
```
or on specific events.
-```sh
+```vim
" Activate Nord Vim when toggling the NERDTree
Plug 'arcticicestudio/nord-vim', { 'on': 'NERDTreeToggle' }
```