diff --git a/README.md b/README.md index e4e8eed..849b715 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,7 @@ smart people at [Hashrocket](http://hashrocket.com/). - [The Black Hole Register](vim/the-black-hole-register.md) - [Buffer Time Travel](vim/buffer-time-travel.md) +- [Check Your Current Color Scheme](vim/check-your-current-color-scheme.md) - [Close the Current Buffer](vim/close-the-current-buffer.md) - [Count the Number of Matches](vim/count-the-number-of-matches.md) - [Create A New File In A New Directory](vim/create-a-new-file-in-a-new-directory.md) diff --git a/vim/check-your-current-color-scheme.md b/vim/check-your-current-color-scheme.md new file mode 100644 index 0000000..7f400a9 --- /dev/null +++ b/vim/check-your-current-color-scheme.md @@ -0,0 +1,11 @@ +# Check Your Current Color Scheme + +Vim ships with a number of different color schemes. There is also a plethora +of color schemes built by the open source community. If you'd like to know +what color scheme you are currently using, you can check with + +``` +:echo g:colors_name +``` + +So more details at both `:h g:colors_name` and `:h colorscheme`.