diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-03-14 09:55:11 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-03-14 09:55:11 +0100 |
commit | 00c61abcb99126329db9021ffb36cd701c90ec33 (patch) | |
tree | 434da170877388d0fcb3538fe553ea2ca1d9ac63 /.config/nvim | |
parent | 7dcb2f8946ef727330341930f304598140077a94 (diff) |
move khard vim plugin to separate repository and clean up vim plugins
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/autoload/coc/source/khard.vim | 28 | ||||
-rw-r--r-- | .config/nvim/init.vim | 36 |
2 files changed, 5 insertions, 59 deletions
diff --git a/.config/nvim/autoload/coc/source/khard.vim b/.config/nvim/autoload/coc/source/khard.vim deleted file mode 100644 index 63dd8bd..0000000 --- a/.config/nvim/autoload/coc/source/khard.vim +++ /dev/null @@ -1,28 +0,0 @@ -" global contacts list -let s:contacts = [] - -function! coc#source#khard#init() abort - " read contacts once on init - for line in systemlist('khard email --remove-first-line --parsable') - let [address, name, type] = split(line, "\t") - call add(s:contacts, printf('%s <%s>', name, address)) - endfor - - " plugin config - return { - \ 'priority': 9, - \ 'shortcut': 'khard', - \ 'filetypes': ['mail'], - \} -endfunction - -function coc#source#khard#should_complete(option) - " only complete addresses on to, cc, bcc and reply-to header lines - return tolower(a:option['line']) =~ '^\(to\|cc\|bcc\|reply-to\):' -endfunction - -function! coc#source#khard#complete(option, cb) abort - " init already loaded all the contacts, just forward them to CoC - call a:cb(s:contacts) -endfunction - diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 056e9ed..c2da686 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -48,23 +48,19 @@ call plug#begin('~/.config/nvim/plugged') Plug 'jiangmiao/auto-pairs' Plug 'tpope/vim-surround' Plug 'itchyny/lightline.vim' -Plug 'itchyny/vim-gitbranch' Plug 'terryma/vim-multiple-cursors' Plug 'AndrewRadev/tagalong.vim' -Plug 'terrortylor/nvim-comment' Plug 'liuchengxu/vim-which-key' Plug 'justinmk/vim-sneak' Plug 'mbbill/undotree' - -" Plug 'jbgutierrez/vim-better-comments' +Plug 'neoclide/coc.nvim', {'branch': 'release'} +Plug 'puremourning/vimspector' Plug 'junegunn/goyo.vim' -Plug 'othree/eregex.vim' Plug 'psliwka/vim-smoothie' -Plug 'tpope/vim-fugitive' +" Plug 'tpope/vim-fugitive' Plug 'airblade/vim-gitgutter' Plug 'wellle/targets.vim' -Plug 'dstein64/vim-startuptime' -Plug 'vim-scripts/DoxygenToolkit.vim' +" Plug 'dstein64/vim-startuptime' Plug 'rrethy/vim-hexokinase', { 'do': 'make hexokinase' } Plug 'dkarter/bullets.vim' Plug 'editorconfig/editorconfig-vim' @@ -88,38 +84,16 @@ Plug 'kaarmu/typst.vim' Plug 'aklt/plantuml-syntax' Plug 'fymyte/rasi.vim' Plug 'habamax/vim-asciidoctor' - -" 'vim=ide' -Plug 'neoclide/coc.nvim', {'branch': 'release'} -Plug 'ryanoasis/vim-devicons' "Icons for filetypes -Plug 'puremourning/vimspector' -Plug 'samoshkin/vim-mergetool' +Plug 'lonkaars/coc-khard' " themes Plug 'arzg/vim-colors-xcode' -Plug 'sainnhe/sonokai' -Plug 'bluz71/vim-nightfly-guicolors' -Plug 'Mcmartelle/vim-monokai-bold' -Plug 'ntk148v/vim-horizon' -Plug 'NLKNguyen/papercolor-theme' -Plug 'scheakur/vim-scheakur' -Plug 'mkarmona/materialbox' -Plug 'morhetz/gruvbox' Plug '~/.config/nvim/local/bliss' Plug '~/.config/nvim/local/polarlight.vim' Plug '~/.config/nvim/local/autonyaa.vim' Plug 'lonkaars/blubber' Plug 'romgrk/github-light.vim' Plug 'vv9k/vim-github-dark' - -" tryout themes -Plug 'https://github.com/mcchrish/zenbones.nvim' -Plug 'https://github.com/Mangeshrex/uwu.vim' -Plug 'https://github.com/metalelf0/jellybeans-nvim' -Plug 'https://github.com/lifepillar/vim-wwdc17-theme' -Plug 'https://github.com/jdsimcoe/abstract.vim' -Plug 'https://github.com/ts-26a/vim-darkspace' -Plug 'https://github.com/iandwelker/rose-pine-vim' call plug#end() " keybinds |