forked from LunarVim/LunarVim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chris
committed
Nov 23, 2020
1 parent
06ba8aa
commit 4b993b4
Showing
4 changed files
with
82 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,28 @@ | ||
" nmap <silent> <leader>z :Goyo<CR> | ||
" autocmd User GoyoEnter set laststatus=0 | ||
" autocmd User GoyoLeave set laststatus=2 | ||
" function! s:goyo_enter() | ||
|
||
" set wrap | ||
" set conceallevel=0 | ||
" set tw=100 | ||
" set noshowcmd | ||
" set scrolloff=999 | ||
" set laststatus=0 | ||
|
||
" endfunction | ||
|
||
" function! s:goyo_leave() | ||
|
||
" set wrap! | ||
" set showcmd | ||
" set scrolloff=5 | ||
" set laststatus=2 | ||
|
||
" endfunction | ||
|
||
" autocmd! User GoyoEnter nested call <SID>goyo_enter() | ||
" autocmd! User GoyoLeave nested call <SID>goyo_leave() | ||
|
||
autocmd! User GoyoEnter lua require('galaxyline').disable_galaxyline() | ||
autocmd! User GoyoLeave lua require('galaxyline').galaxyline_augroup() |