File tree 1 file changed +36
-0
lines changed
1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ " -----------------------------------------------------------------------------
2
+ " File: tokyonight.vim
3
+ " Description: colorscheme for vim, inspired by vscode theme tokyo night
4
+ " Author: codingpaula <[email protected] >
5
+ " Source: https://github.com/codingpaula/vim-tokyonight
6
+ " Last Modified: 19 May 2020
7
+ " -----------------------------------------------------------------------------
8
+ "
9
+ " Initialization: {{{
10
+
11
+ if version > 580
12
+ hi clear
13
+ if exists (" syntax_on" )
14
+ syntax reset
15
+ endif
16
+ endif
17
+
18
+ let g: colors_name = ' tokyonight'
19
+ let s: tokyonight_vim_version = " 0.1.0"
20
+
21
+ " -------------------
22
+ " Editor Settings
23
+ " -------------------
24
+ hi Normal
25
+ hi Cursor
26
+ hi CursorLine
27
+ hi LineNr
28
+ hi CursorLineNR
29
+
30
+ " ------------------
31
+ " - Number Column -
32
+ " ------------------
33
+ hi CursorColumn
34
+ hi FoldColumn
35
+ hi SignColumn
36
+ hi Folded
You can’t perform that action at this time.
0 commit comments