Compare commits

...

3 commits

Author SHA1 Message Date
503268f446
[nvim] Update coc related things. 2021-09-05 19:30:26 +02:00
GitHub
c8d606c1cc
[dmitmel] Update submodule 2021-09-05 19:30:26 +02:00
f8525abd96
[zsh] Generate Bitwarden CLI completions. 2021-09-05 19:27:26 +02:00
4 changed files with 13 additions and 2 deletions

@ -1 +1 @@
Subproject commit 7e254dc7066ad4e5c7c66bef701d433ee9904625
Subproject commit 7bb377647c7490b8025e320adbd82745430073ee

View file

@ -1,2 +1,2 @@
let g:coc_global_extensions += ['coc-sh']
let g:dotfiles_coc_extensions += ['coc-sh']
let g:coc_filetypes += ['sh', 'zsh']

View file

@ -12,6 +12,7 @@ let g:loaded_airline = 1
" Enable the clearly superior mode.
let g:vim_ide = 1
let g:dotfiles_build_coc_from_source = 1
" Small plugin configs
let g:dashboard_default_executive ='fzf'

View file

@ -27,6 +27,16 @@ _plugin project 'https://git.sr.ht/~keanucode/scripts/blob/master/project/projec
unset gh_comp_path
fi; unset gh_bin
if bw_bin="$(command_locate bw)" && [[ -n "$bw_bin" ]]; then
bw_comp_path="${ZSH_CACHE_DIR}/site-functions/_bw"
if [[ "$bw_bin" -nt "$bw_comp_path" || ! -s "$bw_comp_path" ]]; then
_perf_timer_start "generate bw completions"
"$bw_bin" completion --shell zsh >| "$bw_comp_path"
_perf_timer_stop "generate bw completions"
fi
unset bw_comp_path
fi; unset bw_bin
_plugin nim-compl 'https://raw.githubusercontent.com/nim-lang/Nim/devel/tools/nim.zsh-completion' from=url \
after_load='plugin-cfg-path fpath prepend ""'