From 0ddcca39278ad9d5331a9f24e5ada29b4aefa114 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Tue, 2 Jun 2015 08:19:01 -0500 Subject: [PATCH] Add Set Your Color Scheme as a vim til. --- README.md | 1 + vim/set-your-color-scheme.md | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 vim/set-your-color-scheme.md diff --git a/README.md b/README.md index 0c48822..376afcc 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,7 @@ smart people at [Hashrocket](http://hashrocket.com/). - [Rename Current File](vim/rename-current-file.md) - [Repeat The Previous Change](vim/repeat-the-previous-change.md) - [Scrolling Relative to the Window](vim/scrolling-relative-to-the-window.md) +- [Set Your Color Scheme](vim/set-your-color-scheme.md) - [Split Different](vim/split-different.md) - [Tabs To Spaces](vim/tabs-to-spaces.md) - [The Vim Info File](vim/the-vim-info-file.md) diff --git a/vim/set-your-color-scheme.md b/vim/set-your-color-scheme.md new file mode 100644 index 0000000..a338135 --- /dev/null +++ b/vim/set-your-color-scheme.md @@ -0,0 +1,13 @@ +# Set Your Color Scheme + +Vim ships with a number of standard color schemes for both light and dark +backgrounds. You can also find and install many others. To set your color +scheme, you can use the `:colorscheme` command. You can quickly see what +color schemes are available by typing `:colorscheme` and then tabbing for +completion. For instance, you can set the *delek* color scheme by entering + +``` +:colorscheme delek +``` + +See `:h colorscheme` for more details.