Skip to content

Instantly share code, notes, and snippets.

@bfulop
Created January 28, 2019 16:43
Show Gist options
  • Save bfulop/36914d5311c2ecaa53ed4745cbc88010 to your computer and use it in GitHub Desktop.
Save bfulop/36914d5311c2ecaa53ed4745cbc88010 to your computer and use it in GitHub Desktop.
My Gonvim Settings File
[editor]
# Editor minimum width (>= 800)
width = 800
# Editor minimum height (>= 600)
height = 600
# Gonvim copy the yank text to clipboad
clipboard = false
# Editor font-family, font-size, linespace.
fontFamily = "Hack Bold"
fontsize = 13
linespace = 6
# Editor cursor blink
cursorBlink = true
# Disable IME in Normal mode
disableIMEinNormal = true
# start fullscreen
startFullScreen = false
# load vimscript after setting of g:gonvim_running=1
ginitvim = '''
set guifont=Iosevka\ SS09:h15
set linespace=6
if g:gonvim_running == 1
set laststatus=0
endif
'''
[statusLine]
visible = true
# textLabel / icon / background / none
modeIndicatorType = "icon"
# Color setting per vim-modes, if you want to change
NormalModeColor = "#3cabeb"
CommandModeColor = "#5285b8"
InsertModeColor = "#2abcb4"
ReplaceModeColor = "#ff8c0a"
VisualModeColor = "#9932cc"
TerminalModeColor = "#778899"
[tabline]
visible = true
[lint]
visible = true
[scrollBar]
visible = false
[miniMap]
visible = false
[activityBar]
visible = false
dropshadow = false
[sideBar]
visible = false
dropshadow = false
width = 300
accentColor = "#519aba"
[workspace]
# name: directoryname
# full: /path/to/directoryname
# minimum: /p/t/directoryname
pathStyle = "minimum"
# Restore session-information that was ended without being saved
restoreSession = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment