From 5457b54a3a62287f4df69e4a4eeb78b8cc375b5a Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Tue, 8 Nov 2022 15:36:17 +0000 Subject: [PATCH] Merge plugins.yaml into tasks.yaml Having `tasks.yaml` depend on `plugins.yaml` not work, except when running on `localhost` which is not always the case. --- plugins.yaml | 110 -------------------------------------------------- tasks.yaml | 111 ++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 110 insertions(+), 111 deletions(-) delete mode 100644 plugins.yaml diff --git a/plugins.yaml b/plugins.yaml deleted file mode 100644 index 0fca92d..0000000 --- a/plugins.yaml +++ /dev/null @@ -1,110 +0,0 @@ ---- -plugin_dir: '{{vim_config_dir}}/pack/managed' -plugins: - # ======================== Completion & Diagnostics ========================== - - # Conqueror of Completion - - repo: neoclide/coc.nvim - branch: release - # Snippet engine & snippets - - repo: SirVer/ultisnips - - repo: honza/vim-snippets - # Completion for vimscript - - repo: vim-scripts/vimomni - mode: opt - # Asynchronous Lint Engine - - repo: w0rp/ale - # Version control differences in the sign column - - repo: mhinz/vim-signify - # Conflict marker utilities - - repo: rhysd/conflict-marker.vim - # Doxygen documentation stubs - - repo: vim-scripts/DoxygenToolkit.vim - mode: opt - # Easy table manipulation - - repo: dhruvasagar/vim-table-mode - - # ============================= User Interface =============================== - - # Sanley numbered tabs in tabline - - repo: mkitt/tabline.vim - # Fuzzy finder - # TODO: Still necessary? - - repo: junegunn/fzf - - repo: junegunn/fzf.vim - # Replay macros with the enter key - - repo: wincent/replay - # Improved % matching - - repo: andymass/vim-matchup - # Forgot about this... - - repo: kbenzie/note.vim - # View term and hex colors - - repo: guns/xterm-color-table.vim - - # ================================ Text Objects ============================== - - # Library for creating text objects - - repo: kana/vim-textobj-user - # TODO: Doesn't work with nvim - - repo: kana/vim-textobj-entire - # Text object for function parameters - - repo: sgur/vim-textobj-parameter - # Text object for URI's - - repo: jceb/vim-textobj-uri - # Text object for comment blocks - - repo: glts/vim-textobj-comment - # Text object for sentences - - repo: reedes/vim-textobj-sentence - - # ================================== Tim Pope ================================ - - # Toggle comments - - repo: tpope/vim-commentary - # Edit delimiters - - repo: tpope/vim-surround - # Better dot command - - repo: tpope/vim-repeat - # Git wrapper - - repo: tpope/vim-fugitive - # Unix command warppers - - repo: tpope/vim-eunuch - # Improved directory browser - - repo: tpope/vim-vinegar - # PascalCase to under_score to camelCase - # TODO: Copy the good bit remove this plugin - - repo: tpope/vim-abolish - # Mappings for pairs of tasks - - repo: tpope/vim-unimpaired - # Sane date manipulation - - repo: tpope/vim-speeddating - # Wisely add end{if,function} fork with cmake support - - repo: godbyk/vim-endwise - branch: patch-1 - # Text object & formatting for json - - repo: tpope/vim-jdaddy - # Granular project configuration - - repo: tpope/vim-projectionist - - # ================================== tmux ==================================== - - # Seemless vim/tmux pane navigation - - repo: 'christoomey/vim-tmux-navigator' - mode: opt - # Enable focus events when in tmux session - - repo: 'tmux-plugins/vim-tmux-focus-events' - mode: opt - - # ================================= Syntax =================================== - - # Python folding - - repo: kalekundert/vim-coiled-snake - - repo: kbenzie/vim-spirv - - repo: rperier/vim-cmake-syntax - - repo: tikhomirov/vim-glsl - - repo: beyondmarc/hlsl.vim - - repo: frasercrmck/opencl.vim - - repo: asciidoc/vim-asciidoc - - repo: mustache/vim-mustache-handlebars - - repo: joshglendenning/vim-caddyfile - - repo: kbenzie/vim-khr - - repo: jrozner/vim-antlr diff --git a/tasks.yaml b/tasks.yaml index 0ed1192..691f623 100644 --- a/tasks.yaml +++ b/tasks.yaml @@ -1,5 +1,114 @@ --- -- include_vars: plugins.yaml +- set_fact: + plugin_dir: '{{vim_config_dir}}/pack/managed' + plugins: + # ====================== Completion & Diagnostics ======================== + + # Conqueror of Completion + - repo: neoclide/coc.nvim + branch: release + # Snippet engine & snippets + - repo: SirVer/ultisnips + - repo: honza/vim-snippets + # Completion for vimscript + - repo: vim-scripts/vimomni + mode: opt + # Asynchronous Lint Engine + - repo: w0rp/ale + # Version control differences in the sign column + - repo: mhinz/vim-signify + # Conflict marker utilities + - repo: rhysd/conflict-marker.vim + # Doxygen documentation stubs + - repo: vim-scripts/DoxygenToolkit.vim + mode: opt + # Easy table manipulation + - repo: dhruvasagar/vim-table-mode + + # =========================== User Interface ============================= + + # Sanley numbered tabs in tabline + - repo: mkitt/tabline.vim + # Fuzzy finder + # TODO: Still necessary? + - repo: junegunn/fzf + - repo: junegunn/fzf.vim + # Replay macros with the enter key + - repo: wincent/replay + # Improved % matching + - repo: andymass/vim-matchup + # Forgot about this... + - repo: kbenzie/note.vim + # View term and hex colors + - repo: guns/xterm-color-table.vim + + # ============================== Text Objects ============================ + + # Library for creating text objects + - repo: kana/vim-textobj-user + # TODO: Doesn't work with nvim + - repo: kana/vim-textobj-entire + # Text object for function parameters + - repo: sgur/vim-textobj-parameter + # Text object for URI's + - repo: jceb/vim-textobj-uri + # Text object for comment blocks + - repo: glts/vim-textobj-comment + # Text object for sentences + - repo: reedes/vim-textobj-sentence + + # ================================ Tim Pope ============================== + + # Toggle comments + - repo: tpope/vim-commentary + # Edit delimiters + - repo: tpope/vim-surround + # Better dot command + - repo: tpope/vim-repeat + # Git wrapper + - repo: tpope/vim-fugitive + # Unix command warppers + - repo: tpope/vim-eunuch + # Improved directory browser + - repo: tpope/vim-vinegar + # PascalCase to under_score to camelCase + # TODO: Copy the good bit remove this plugin + - repo: tpope/vim-abolish + # Mappings for pairs of tasks + - repo: tpope/vim-unimpaired + # Sane date manipulation + - repo: tpope/vim-speeddating + # Wisely add end{if,function} fork with cmake support + - repo: godbyk/vim-endwise + branch: patch-1 + # Text object & formatting for json + - repo: tpope/vim-jdaddy + # Granular project configuration + - repo: tpope/vim-projectionist + + # ================================ tmux ================================== + + # Seemless vim/tmux pane navigation + - repo: 'christoomey/vim-tmux-navigator' + mode: opt + # Enable focus events when in tmux session + - repo: 'tmux-plugins/vim-tmux-focus-events' + mode: opt + + # =============================== Syntax ================================= + + # Python folding + - repo: kalekundert/vim-coiled-snake + - repo: kbenzie/vim-spirv + - repo: rperier/vim-cmake-syntax + - repo: tikhomirov/vim-glsl + - repo: beyondmarc/hlsl.vim + - repo: frasercrmck/opencl.vim + - repo: asciidoc/vim-asciidoc + - repo: mustache/vim-mustache-handlebars + - repo: joshglendenning/vim-caddyfile + - repo: kbenzie/vim-khr + - repo: jrozner/vim-antlr - name: remove minpac directory when: ansible_os_family != "Windows"