-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtokyonight.vim
More file actions
36 lines (32 loc) · 817 Bytes
/
tokyonight.vim
File metadata and controls
36 lines (32 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
" -----------------------------------------------------------------------------
" File: tokyonight.vim
" Description: colorscheme for vim, inspired by vscode theme tokyo night
" Author: codingpaula <muna.takarya@gmail.com>
" Source: https://github.com/codingpaula/vim-tokyonight
" Last Modified: 19 May 2020
" -----------------------------------------------------------------------------
"
" Initialization: {{{
if version > 580
hi clear
if exists("syntax_on")
syntax reset
endif
endif
let g:colors_name = 'tokyonight'
let s:tokyonight_vim_version = "0.1.0"
" -------------------
" Editor Settings
" -------------------
hi Normal
hi Cursor
hi CursorLine
hi LineNr
hi CursorLineNR
" ------------------
" - Number Column -
" ------------------
hi CursorColumn
hi FoldColumn
hi SignColumn
hi Folded