2018-02-27 07:11:50 +01:00
|
|
|
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
|
|
|
# Copyright (C) 2017 Donovan Glover
|
2017-10-25 02:38:03 +02:00
|
|
|
|
2017-12-31 05:58:26 +01:00
|
|
|
set font "Hack 12" # Use Hack as our font of choice
|
|
|
|
set guioptions "v" # Show a "progress bar" when scrolling up/down
|
|
|
|
set adjust-open "width" # Make documents take up all the available space by default
|
|
|
|
set statusbar-basename "true" # When using the status bar, show the basename only
|
|
|
|
|
|
|
|
set render-loading "false" # Do not show the "loading" text
|
|
|
|
set scroll-step "120" # Increase the scroll distance when using j/k
|
|
|
|
set recolor "true" # Use our theme colors (<C-r> for the original document colors)
|
|
|
|
|
|
|
|
# [colors]
|
2018-08-21 23:17:53 +02:00
|
|
|
set default-bg "#151515"
|
2018-04-12 04:55:35 +02:00
|
|
|
set default-fg "#202020"
|
|
|
|
set statusbar-bg "#303030"
|
2018-08-21 23:17:53 +02:00
|
|
|
set statusbar-fg "#B0B0B0"
|
|
|
|
set inputbar-bg "#151515"
|
|
|
|
set inputbar-fg "#FFFFFF"
|
|
|
|
set notification-bg "#151515"
|
|
|
|
set notification-fg "#FFFFFF"
|
|
|
|
set notification-error-bg "#151515"
|
|
|
|
set notification-error-fg "#FF0086"
|
|
|
|
set notification-warning-bg "#151515"
|
|
|
|
set notification-warning-fg "#FF0086"
|
|
|
|
set highlight-color "#ABA800"
|
|
|
|
set highlight-active-color "#3777E6"
|
2018-04-12 04:55:35 +02:00
|
|
|
set completion-bg "#202020"
|
2018-08-21 23:17:53 +02:00
|
|
|
set completion-fg "#3777E6"
|
|
|
|
set completion-highlight-bg "#3777E6"
|
|
|
|
set completion-highlight-fg "#FFFFFF"
|
|
|
|
set recolor-lightcolor "#151515"
|
|
|
|
set recolor-darkcolor "#E0E0E0"
|
2017-12-31 05:58:26 +01:00
|
|
|
|
|
|
|
# vim:ft=conf
|