├── .claude ├── SECTION.md ├── commands │ └── add.md └── settings.json ├── .gemini ├── commands │ └── add.toml └── settings.json ├── .github ├── archive-repo-matcher.json ├── scripts │ ├── archive_check.sh │ ├── extract-sections.sh │ └── move_archive.sh └── workflows │ ├── count-account.yml │ ├── lint.yml │ └── trigger_new_rss.yml ├── .gitignore ├── .markdownlint.yaml ├── AGENTS.md ├── Archived.md ├── CLAUDE.md ├── HOW_TO_MAKE.md ├── LICENSE ├── _config.yml ├── _includes └── head-custom-google-analytics.html ├── ai.md ├── analytics.md ├── animation.md ├── appearance.md ├── auto-insert.md ├── background.md ├── buffer.md ├── bufferline.md ├── c_cpp.md ├── calculation.md ├── checker.md ├── cli.md ├── code-outline.md ├── colorscheme.md ├── command.md ├── commandline.md ├── comment.md ├── completion.md ├── concentration.md ├── configration-file.md ├── convert.md ├── cursor.md ├── cursorline_columnline.md ├── db.md ├── debugger_repl.md ├── dictionary.md ├── diff.md ├── directory.md ├── documentation.md ├── external-tools.md ├── filer.md ├── filetype.md ├── fold.md ├── font_emoji.md ├── fuzzy-finder.md ├── game-engine.md ├── game.md ├── git-github.md ├── go.md ├── gui.md ├── hardware.md ├── help.md ├── hex.md ├── image.md ├── indent.md ├── integration-apps.md ├── java.md ├── js_ts.md ├── jump.md ├── language-specific.md ├── linter_formatter.md ├── lsp.md ├── lua.md ├── macro.md ├── mapping.md ├── mark.md ├── message_notification.md ├── mode.md ├── motion.md ├── music.md ├── neovim-distribution.md ├── neovim-lua-development.md ├── neovim-lua-library.md ├── note-taking.md ├── office-tools.md ├── os.md ├── package-manager.md ├── php.md ├── plugin-manager.md ├── project.md ├── protocol.md ├── python.md ├── quickfix_location.md ├── readable-assistant.md ├── readme.md ├── ruby.md ├── rust.md ├── save_backup.md ├── scrollbar.md ├── search_replace_grep_select.md ├── security.md ├── service.md ├── session.md ├── snippet_template.md ├── spellcheck.md ├── split_join.md ├── startup.md ├── statusline.md ├── syntax_highlight.md ├── tab.md ├── tabline.md ├── task-runner.md ├── terminal.md ├── test.md ├── textobject_operator.md ├── toy.md ├── translate.md ├── treesitter.md ├── util-pack.md ├── vscode-features.md ├── web-browser.md ├── web-service.md ├── winbar.md ├── window.md └── yank_paste.md /.claude/SECTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/.claude/SECTION.md -------------------------------------------------------------------------------- /.claude/commands/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/.claude/commands/add.md -------------------------------------------------------------------------------- /.claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/.claude/settings.json -------------------------------------------------------------------------------- /.gemini/commands/add.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/.gemini/commands/add.toml -------------------------------------------------------------------------------- /.gemini/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "geminicodeassist.agentYoloMode": true 3 | } 4 | -------------------------------------------------------------------------------- /.github/archive-repo-matcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/.github/archive-repo-matcher.json -------------------------------------------------------------------------------- /.github/scripts/archive_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/.github/scripts/archive_check.sh -------------------------------------------------------------------------------- /.github/scripts/extract-sections.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/.github/scripts/extract-sections.sh -------------------------------------------------------------------------------- /.github/scripts/move_archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/.github/scripts/move_archive.sh -------------------------------------------------------------------------------- /.github/workflows/count-account.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/.github/workflows/count-account.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/trigger_new_rss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/.github/workflows/trigger_new_rss.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/AGENTS.md -------------------------------------------------------------------------------- /Archived.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/Archived.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /HOW_TO_MAKE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/HOW_TO_MAKE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/LICENSE -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/head-custom-google-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/_includes/head-custom-google-analytics.html -------------------------------------------------------------------------------- /ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/ai.md -------------------------------------------------------------------------------- /analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/analytics.md -------------------------------------------------------------------------------- /animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/animation.md -------------------------------------------------------------------------------- /appearance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/appearance.md -------------------------------------------------------------------------------- /auto-insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/auto-insert.md -------------------------------------------------------------------------------- /background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/background.md -------------------------------------------------------------------------------- /buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/buffer.md -------------------------------------------------------------------------------- /bufferline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/bufferline.md -------------------------------------------------------------------------------- /c_cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/c_cpp.md -------------------------------------------------------------------------------- /calculation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/calculation.md -------------------------------------------------------------------------------- /checker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/checker.md -------------------------------------------------------------------------------- /cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/cli.md -------------------------------------------------------------------------------- /code-outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/code-outline.md -------------------------------------------------------------------------------- /colorscheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/colorscheme.md -------------------------------------------------------------------------------- /command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/command.md -------------------------------------------------------------------------------- /commandline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/commandline.md -------------------------------------------------------------------------------- /comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/comment.md -------------------------------------------------------------------------------- /completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/completion.md -------------------------------------------------------------------------------- /concentration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/concentration.md -------------------------------------------------------------------------------- /configration-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/configration-file.md -------------------------------------------------------------------------------- /convert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/convert.md -------------------------------------------------------------------------------- /cursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/cursor.md -------------------------------------------------------------------------------- /cursorline_columnline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/cursorline_columnline.md -------------------------------------------------------------------------------- /db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/db.md -------------------------------------------------------------------------------- /debugger_repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/debugger_repl.md -------------------------------------------------------------------------------- /dictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/dictionary.md -------------------------------------------------------------------------------- /diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/diff.md -------------------------------------------------------------------------------- /directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/directory.md -------------------------------------------------------------------------------- /documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/documentation.md -------------------------------------------------------------------------------- /external-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/external-tools.md -------------------------------------------------------------------------------- /filer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/filer.md -------------------------------------------------------------------------------- /filetype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/filetype.md -------------------------------------------------------------------------------- /fold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/fold.md -------------------------------------------------------------------------------- /font_emoji.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/font_emoji.md -------------------------------------------------------------------------------- /fuzzy-finder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/fuzzy-finder.md -------------------------------------------------------------------------------- /game-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/game-engine.md -------------------------------------------------------------------------------- /game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/game.md -------------------------------------------------------------------------------- /git-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/git-github.md -------------------------------------------------------------------------------- /go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/go.md -------------------------------------------------------------------------------- /gui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/gui.md -------------------------------------------------------------------------------- /hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/hardware.md -------------------------------------------------------------------------------- /help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/help.md -------------------------------------------------------------------------------- /hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/hex.md -------------------------------------------------------------------------------- /image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/image.md -------------------------------------------------------------------------------- /indent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/indent.md -------------------------------------------------------------------------------- /integration-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/integration-apps.md -------------------------------------------------------------------------------- /java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/java.md -------------------------------------------------------------------------------- /js_ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/js_ts.md -------------------------------------------------------------------------------- /jump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/jump.md -------------------------------------------------------------------------------- /language-specific.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/language-specific.md -------------------------------------------------------------------------------- /linter_formatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/linter_formatter.md -------------------------------------------------------------------------------- /lsp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/lsp.md -------------------------------------------------------------------------------- /lua.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/lua.md -------------------------------------------------------------------------------- /macro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/macro.md -------------------------------------------------------------------------------- /mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/mapping.md -------------------------------------------------------------------------------- /mark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/mark.md -------------------------------------------------------------------------------- /message_notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/message_notification.md -------------------------------------------------------------------------------- /mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/mode.md -------------------------------------------------------------------------------- /motion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/motion.md -------------------------------------------------------------------------------- /music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/music.md -------------------------------------------------------------------------------- /neovim-distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/neovim-distribution.md -------------------------------------------------------------------------------- /neovim-lua-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/neovim-lua-development.md -------------------------------------------------------------------------------- /neovim-lua-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/neovim-lua-library.md -------------------------------------------------------------------------------- /note-taking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/note-taking.md -------------------------------------------------------------------------------- /office-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/office-tools.md -------------------------------------------------------------------------------- /os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/os.md -------------------------------------------------------------------------------- /package-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/package-manager.md -------------------------------------------------------------------------------- /php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/php.md -------------------------------------------------------------------------------- /plugin-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/plugin-manager.md -------------------------------------------------------------------------------- /project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/project.md -------------------------------------------------------------------------------- /protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/protocol.md -------------------------------------------------------------------------------- /python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/python.md -------------------------------------------------------------------------------- /quickfix_location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/quickfix_location.md -------------------------------------------------------------------------------- /readable-assistant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/readable-assistant.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/readme.md -------------------------------------------------------------------------------- /ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/ruby.md -------------------------------------------------------------------------------- /rust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/rust.md -------------------------------------------------------------------------------- /save_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/save_backup.md -------------------------------------------------------------------------------- /scrollbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/scrollbar.md -------------------------------------------------------------------------------- /search_replace_grep_select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/search_replace_grep_select.md -------------------------------------------------------------------------------- /security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/security.md -------------------------------------------------------------------------------- /service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/service.md -------------------------------------------------------------------------------- /session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/session.md -------------------------------------------------------------------------------- /snippet_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/snippet_template.md -------------------------------------------------------------------------------- /spellcheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/spellcheck.md -------------------------------------------------------------------------------- /split_join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/split_join.md -------------------------------------------------------------------------------- /startup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/startup.md -------------------------------------------------------------------------------- /statusline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/statusline.md -------------------------------------------------------------------------------- /syntax_highlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/syntax_highlight.md -------------------------------------------------------------------------------- /tab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/tab.md -------------------------------------------------------------------------------- /tabline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/tabline.md -------------------------------------------------------------------------------- /task-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/task-runner.md -------------------------------------------------------------------------------- /terminal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/terminal.md -------------------------------------------------------------------------------- /test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/test.md -------------------------------------------------------------------------------- /textobject_operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/textobject_operator.md -------------------------------------------------------------------------------- /toy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/toy.md -------------------------------------------------------------------------------- /translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/translate.md -------------------------------------------------------------------------------- /treesitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/treesitter.md -------------------------------------------------------------------------------- /util-pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/util-pack.md -------------------------------------------------------------------------------- /vscode-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/vscode-features.md -------------------------------------------------------------------------------- /web-browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/web-browser.md -------------------------------------------------------------------------------- /web-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/web-service.md -------------------------------------------------------------------------------- /winbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/winbar.md -------------------------------------------------------------------------------- /window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/window.md -------------------------------------------------------------------------------- /yank_paste.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutkat/my-neovim-pluginlist/HEAD/yank_paste.md --------------------------------------------------------------------------------