add picom

This commit is contained in:
Mark Riedesel 2020-05-19 13:08:50 -04:00
parent 14795eb6dc
commit a64e56babd
6 changed files with 58 additions and 3 deletions

2
vim/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
autoload/
bundle/

View file

@ -1 +0,0 @@
*

View file

@ -1 +0,0 @@
*

23
vim/coc-settings.json Normal file
View file

@ -0,0 +1,23 @@
{
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": [
"c",
"cpp"
],
"rootPatterns": [
".ccls",
".git/",
".hg/",
".vim/",
"compile_commands.json"
],
"initializationOptions":{
"cache": {
"directory": "/tmp/ccls"
}
}
}
}
}

View file

@ -52,7 +52,7 @@ set smarttab
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
autocmd VimEnter * PlugInstall --sync | quit
endif
" begin vim-plug items