#vim freenode irc
name origin:<habamax> I am bad with names <novasenco> I got a feeling <novasenco> That tonight's gonna be a Haba night. <novasenco> That tonight's gonna be a Haba night. Habanight Habanight. <habamax> lol <habamax> should I call it habanight? <novasenco> habanight is not a bad name. * habamax hold my beer
-
Built using awesome Toolkit for Vim Color Scheme Designers!
-
No fancy background, pure black is here.
-
No syntax with bold or italic. Simple.
-
Do you want white background? Check polar.
-
Do you want light background? Check psionic.
-
Do you like dark gruvbox colors? Check gruvbit.
-
Do you like Apprentice? Check alchemist.
- Using plugin manager
-
Follow your plugin manager documentation, for example, vim-plug does it this way:
" Specify a directory for plugins call plug#begin('~/.vim/plugged') Plug 'habamax/vim-habanight' " ... other plugins ... " Initialize plugin system call plug#end() set termguicolors colorscheme habanight
- Manual with git
-
Clone this repo to your vim/nvim packages directory:
Vim on Linux or OSXgit clone https://github.com/habamax/vim-habanight ~/.vim/pack/plugins/start/vim-habanight
Neovim on Linux or OSXgit clone https://github.com/habamax/vim-habanight ~/.config/nvim/pack/plugins/start/vim-habanight
Vim on Windowsgit clone https://github.com/habamax/vim-habanight C:/Users/USERNAME/vimfiles/pack/plugins/start/vim-habanight (1)
Neovim on Windowsgit clone https://github.com/habamax/vim-habanight C:/Users/USERNAME/AppData/Local/nvim/pack/plugins/start/vim-habanight (1)
-
Change
USERNAME
to your user name
-
- Manual
-
-
Download zip archive (available in Code › Download ZIP)
-
Extract
colors/habanight.vim
file into your vim/nvim settings directory-
~/.vim/colors/habanight.vim
— vim (linux, osx) -
~/vimfiles/colors/habanight.vim
— vim (windows) -
~/.config/nvim/colors/habanight.vim
— neovim (linux, osx) -
~/AppData/Local/nvim/colors/habanight.vim
— neovim (windows)
-
-
add to your settings:
set termguicolors
colorscheme habanight
Add following to your settings file:
augroup colorscheme_change | au!
au ColorScheme habanight hi Comment gui=italic cterm=italic
augroup END
set termguicolors
colorscheme habanight
Add following to your settings file:
func! s:habanight_setup() abort
hi Comment gui=italic cterm=italic
hi Statement gui=bold cterm=bold
endfunc
augroup colorscheme_change | au!
au ColorScheme habanight call s:habanight_setup()
augroup END
set termguicolors
colorscheme habanight
func! s:habanight_setup() abort
hi Comment gui=italic cterm=italic
hi Statement gui=bold cterm=bold
hi VertSplit guibg=NONE ctermbg=NONE
endfunc
augroup colorscheme_change | au!
au ColorScheme habanight call s:habanight_setup()
augroup END
set termguicolors
colorscheme habanight