spacemacs, stow

This commit is contained in:
Andrejus
2021-04-26 23:25:43 +01:00
parent 75c7cd09db
commit 31f3fe9064
25 changed files with 632 additions and 56 deletions

View File

@@ -0,0 +1,27 @@
" Colourscheme
set background=dark
colorscheme base16-seti
" Close preview window when completion is done.
autocmd! CompleteDone * if pumvisible() == 0 | pclose | endif
" Disable deprecated python2 provider
let g:loaded_python_provider = 0
" " Call method on window enter
" augroup WindowManagement
" autocmd!
" autocmd WinEnter * call Handle_Win_Enter()
" augroup END
" " Change highlight group of preview window when open
" function! Handle_Win_Enter()
" if &previewwindow
" setlocal winhighlight=Normal:MarkdownError
" endif
" endfunction
"
" {{{
let g:startify_custom_header =
\ startify#pad(split(system('fortune | cowsay -f tux'), '\n'))
" }}}