├── .gitignore ├── .other-backup └── mcpp.itermcolors ├── .pre-commit-config.yaml ├── README.md ├── config ├── atuin │ └── config.toml ├── my-scripts │ └── git │ │ └── patch-to-others.sh ├── nvim │ ├── after │ │ └── plugin │ │ │ ├── bufferline.lua │ │ │ ├── colors.lua │ │ │ ├── dashboard-nvim.lua │ │ │ ├── easymotion.lua │ │ │ ├── fugitive.lua │ │ │ ├── gitsigns.lua │ │ │ ├── indent-blackline.lua │ │ │ ├── lastplace.lua │ │ │ ├── lsp.lua │ │ │ ├── lualine.lua │ │ │ ├── nvim-notify.lua │ │ │ ├── nvimtree.lua │ │ │ ├── telescope.lua │ │ │ ├── toggleterm.lua │ │ │ ├── treesitter.lua │ │ │ └── undotree.lua │ ├── init.lua │ └── lua │ │ ├── config │ │ ├── init.lua │ │ ├── lazy.lua │ │ ├── remap-vscode.lua │ │ ├── remap.lua │ │ └── set.lua │ │ └── plugins │ │ ├── appearence.lua │ │ ├── autocompletion.lua │ │ ├── easy-edit.lua │ │ ├── file-navigator.lua │ │ ├── formatter.lua │ │ ├── git.lua │ │ ├── infra.lua │ │ ├── lsp.lua │ │ └── utils.lua └── sketchybar │ ├── colors.sh │ ├── fonts.sh │ ├── icons.sh │ ├── items │ ├── battery.sh │ ├── clock.sh │ ├── front_app.sh │ ├── ip.sh │ ├── now_playing.sh │ ├── output_devices.sh │ ├── right.sh │ ├── spaces.sh │ └── volume.sh │ ├── plugins │ ├── battery.sh │ ├── clock.sh │ ├── front_app.sh │ ├── ip.sh │ ├── now_playing.sh │ ├── output_devices.sh │ ├── space.sh │ └── volume.sh │ └── sketchybarrc ├── gitconfig ├── hammerspoon ├── Spoons │ ├── AClock.spoon │ │ ├── docs.json │ │ └── init.lua │ ├── SkyRocket.spoon │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── doc │ │ │ └── demo.gif │ │ └── init.lua │ ├── SpoonInstall.spoon │ │ ├── docs.json │ │ └── init.lua │ └── VimMode.spoon │ │ ├── .busted │ │ ├── .gitignore │ │ ├── .luacheckrc │ │ ├── .rspec │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── README.md │ │ ├── Rakefile │ │ ├── bin │ │ ├── dev-setup │ │ └── installer │ │ ├── docs.json │ │ ├── docs │ │ └── Integration_Tests.md │ │ ├── images │ │ ├── vim-mode.gif │ │ └── vim-state-diagram.svg │ │ ├── init.lua │ │ ├── lib │ │ ├── accessibility_buffer.lua │ │ ├── app_watcher.lua │ │ ├── axuielement.lua │ │ ├── block_cursor.lua │ │ ├── buffer.lua │ │ ├── command_state.lua │ │ ├── config.lua │ │ ├── contextual_modal.lua │ │ ├── contextual_modal │ │ │ └── registry.lua │ │ ├── focus_watcher.lua │ │ ├── hot_patcher.lua │ │ ├── key_sequence.lua │ │ ├── modal.lua │ │ ├── motion.lua │ │ ├── motions │ │ │ ├── back_big_word.lua │ │ │ ├── back_word.lua │ │ │ ├── backward_search.lua │ │ │ ├── between_chars.lua │ │ │ ├── big_word.lua │ │ │ ├── current_selection.lua │ │ │ ├── down.lua │ │ │ ├── end_of_word.lua │ │ │ ├── entire_line.lua │ │ │ ├── first_line.lua │ │ │ ├── first_non_blank.lua │ │ │ ├── forward_search.lua │ │ │ ├── in_word.lua │ │ │ ├── last_line.lua │ │ │ ├── left.lua │ │ │ ├── line_beginning.lua │ │ │ ├── line_end.lua │ │ │ ├── noop.lua │ │ │ ├── right.lua │ │ │ ├── till_after_search.lua │ │ │ ├── till_before_search.lua │ │ │ ├── up.lua │ │ │ └── word.lua │ │ ├── operator.lua │ │ ├── operators │ │ │ ├── change.lua │ │ │ ├── delete.lua │ │ │ ├── replace.lua │ │ │ └── yank.lua │ │ ├── screen_dimmer.lua │ │ ├── selection.lua │ │ ├── state.lua │ │ ├── state_indicator.lua │ │ ├── strategies │ │ │ ├── accessibility_strategy.lua │ │ │ └── keyboard_strategy.lua │ │ ├── strategy.lua │ │ ├── utils │ │ │ ├── ax.lua │ │ │ ├── benchmark.lua │ │ │ ├── browser.lua │ │ │ ├── debug.lua │ │ │ ├── find_first.lua │ │ │ ├── inspect.lua │ │ │ ├── keys.lua │ │ │ ├── log.lua │ │ │ ├── number_utils.lua │ │ │ ├── prequire.lua │ │ │ ├── set.lua │ │ │ ├── statemachine.lua │ │ │ ├── string_utils.lua │ │ │ ├── table.lua │ │ │ ├── times.lua │ │ │ ├── version.lua │ │ │ ├── visible_range.lua │ │ │ └── visual.lua │ │ ├── vim.lua │ │ └── wait_for_char.lua │ │ ├── spec │ │ ├── buffer_spec.lua │ │ ├── config_spec.lua │ │ ├── features │ │ │ ├── big_word_spec.rb │ │ │ ├── delete_line_spec.rb │ │ │ ├── delete_word_spec.rb │ │ │ ├── linewise_spec.rb │ │ │ └── visual_mode_spec.rb │ │ ├── fixtures │ │ │ └── textarea.html │ │ ├── motions │ │ │ ├── back_word_spec.lua │ │ │ ├── between_chars_spec.lua │ │ │ ├── big_word_spec.lua │ │ │ ├── end_of_word_spec.lua │ │ │ ├── in_word_spec.lua │ │ │ ├── line_beginning_spec.lua │ │ │ ├── line_end_spec.lua │ │ │ └── word_spec.lua │ │ ├── operators │ │ │ ├── delete_spec.lua │ │ │ └── replace_spec.lua │ │ ├── selection_spec.lua │ │ ├── spec_helper.lua │ │ ├── spec_helper.rb │ │ ├── support │ │ │ ├── capybara.rb │ │ │ ├── chrome_kill.rb │ │ │ ├── hammerspoon.rb │ │ │ └── text_helpers.rb │ │ └── utils │ │ │ ├── number_utils_spec.lua │ │ │ ├── string_utils_spec.lua │ │ │ ├── table_spec.lua │ │ │ └── visual_spec.lua │ │ └── vendor │ │ ├── hs │ │ └── _asm │ │ │ └── axuielement │ │ │ ├── docs.json │ │ │ ├── init.lua │ │ │ ├── internal.so │ │ │ └── internal.so.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── internal.so │ │ ├── luautf8.lua │ │ └── luautf8 │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arm │ │ └── lua-utf8.so │ │ ├── build-silicon.sh │ │ ├── lutf8lib.c │ │ ├── parseucd.lua │ │ ├── rockspecs │ │ ├── luautf8-0.1.0-1.rockspec │ │ ├── luautf8-0.1.1-1.rockspec │ │ ├── luautf8-0.1.2-2.rockspec │ │ ├── luautf8-0.1.3-1.rockspec │ │ └── luautf8-scm-0.rockspec │ │ ├── test.lua │ │ ├── unidata.h │ │ └── x86 │ │ └── lua-utf8.so ├── init.lua ├── openNewChromeTab.applescript └── stackline │ ├── .gitignore │ ├── conf.lua │ ├── init.lua │ ├── lib │ ├── utils.lua │ └── valid.lua │ └── stackline │ ├── configmanager.lua │ ├── query.lua │ ├── stack.lua │ ├── stackline.lua │ ├── stackmanager.lua │ └── window.lua ├── ideavimrc ├── lessfilter ├── myScript ├── myjiaoben └── curl │ └── curltime.template ├── oh-my-zsh └── custom │ ├── deps │ └── antigen.zsh │ ├── plugins │ ├── enhancd │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ ├── feature_request.md │ │ │ │ └── question.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── labeler.yml │ │ │ ├── labels.yml │ │ │ └── workflows │ │ │ │ ├── import_labels.yml │ │ │ │ ├── labeler.yml │ │ │ │ ├── sync_labels.yml │ │ │ │ └── test.yml │ │ ├── .gitignore │ │ ├── README.md │ │ ├── a.sh │ │ ├── config.ltsv │ │ ├── enhancd.plugin.zsh │ │ ├── init.sh │ │ ├── lib │ │ │ ├── fuzzy.awk │ │ │ ├── has_dup_lines.awk │ │ │ ├── help.awk │ │ │ ├── ltsv.awk │ │ │ ├── reverse.awk │ │ │ ├── split.awk │ │ │ ├── step_by_step.awk │ │ │ └── to_abspath.awk │ │ ├── src │ │ │ ├── cd.sh │ │ │ ├── command.sh │ │ │ ├── completion.zsh │ │ │ ├── filepath.sh │ │ │ ├── filter.sh │ │ │ ├── flag.sh │ │ │ ├── history.sh │ │ │ ├── ltsv.sh │ │ │ └── sources.sh │ │ └── test │ │ │ └── filepath.bats │ ├── fast-syntax-highlighting │ │ ├── .fast-make-targets │ │ ├── .fast-read-ini-file │ │ ├── .fast-run-command │ │ ├── .fast-run-git-command │ │ ├── .fast-zts-read-all │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── zunit.yaml │ │ ├── .gitignore │ │ ├── .zunit.yml │ │ ├── CHANGELOG.md │ │ ├── CHROMA_GUIDE.adoc │ │ ├── DONATIONS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── THEME_GUIDE.md │ │ ├── _fast-theme │ │ ├── fast-highlight │ │ ├── fast-string-highlight │ │ ├── fast-syntax-highlighting.plugin.zsh │ │ ├── fast-theme │ │ ├── images │ │ │ ├── 203654.gif │ │ │ ├── array-assign.png │ │ │ ├── assign.png │ │ │ ├── brackets.gif │ │ │ ├── cmdsubst.png │ │ │ ├── cplx_cond.png │ │ │ ├── eval_cmp.png │ │ │ ├── execfd.png │ │ │ ├── execfd_cmp.png │ │ │ ├── for-loop-cmp.png │ │ │ ├── for-loop.png │ │ │ ├── function.png │ │ │ ├── git_chroma.png │ │ │ ├── global-alias.png │ │ │ ├── heredoc.png │ │ │ ├── herestring.png │ │ │ ├── highlight-less.png │ │ │ ├── highlight-much.png │ │ │ ├── ideal-string.png │ │ │ ├── in_string.png │ │ │ ├── math.gif │ │ │ ├── parameter.png │ │ │ ├── theme.png │ │ │ ├── typeset.png │ │ │ └── zcalc.png │ │ ├── share │ │ │ └── free_theme.zsh │ │ ├── test │ │ │ ├── parse.zsh │ │ │ └── to-parse.zsh │ │ ├── tests │ │ │ ├── _output │ │ │ │ └── .gitkeep │ │ │ ├── _support │ │ │ │ ├── .gitkeep │ │ │ │ └── bootstrap │ │ │ ├── example.zunit │ │ │ └── main.zunit │ │ ├── themes │ │ │ ├── clean.ini │ │ │ ├── default.ini │ │ │ ├── forest.ini │ │ │ ├── free.ini │ │ │ ├── q-jmnemonic.ini │ │ │ ├── safari.ini │ │ │ ├── spa.ini │ │ │ ├── sv-orple.ini │ │ │ ├── sv-plant.ini │ │ │ └── zdharma.ini │ │ └── →chroma │ │ │ ├── -alias.ch │ │ │ ├── -autoload.ch │ │ │ ├── -autorandr.ch │ │ │ ├── -awk.ch │ │ │ ├── -docker.ch │ │ │ ├── -example.ch │ │ │ ├── -fast-theme.ch │ │ │ ├── -fpath_peq.ch │ │ │ ├── -git.ch │ │ │ ├── -grep.ch │ │ │ ├── -hub.ch │ │ │ ├── -ionice.ch │ │ │ ├── -lab.ch │ │ │ ├── -make.ch │ │ │ ├── -nice.ch │ │ │ ├── -nmcli.ch │ │ │ ├── -node.ch │ │ │ ├── -ogit.ch │ │ │ ├── -perl.ch │ │ │ ├── -precommand.ch │ │ │ ├── -printf.ch │ │ │ ├── -ruby.ch │ │ │ ├── -scp.ch │ │ │ ├── -sh.ch │ │ │ ├── -source.ch │ │ │ ├── -ssh.ch │ │ │ ├── -subcommand.ch │ │ │ ├── -subversion.ch │ │ │ ├── -vim.ch │ │ │ ├── -whatis.ch │ │ │ ├── -which.ch │ │ │ ├── -zinit.ch │ │ │ └── main-chroma.ch │ ├── git-open │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── changelog.md │ │ ├── git-open │ │ ├── git-open.1.md │ │ ├── git-open.plugin.zsh │ │ ├── issue_template.md │ │ ├── markdownlint.json │ │ ├── package-lock.json │ │ ├── package.json │ │ └── test │ │ │ └── git-open.bats │ ├── gitstatus │ │ ├── .clang-format │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ └── settings.json │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── build │ │ ├── build.info │ │ ├── deps │ │ │ └── .gitkeep │ │ ├── docs │ │ │ └── listdir.md │ │ ├── gitstatus.plugin.sh │ │ ├── gitstatus.plugin.zsh │ │ ├── gitstatus.prompt.sh │ │ ├── gitstatus.prompt.zsh │ │ ├── install │ │ ├── install.info │ │ ├── mbuild │ │ ├── src │ │ │ ├── algorithm.h │ │ │ ├── arena.cc │ │ │ ├── arena.h │ │ │ ├── bits.h │ │ │ ├── check.h │ │ │ ├── check_dir_mtime.cc │ │ │ ├── check_dir_mtime.h │ │ │ ├── dir.cc │ │ │ ├── dir.h │ │ │ ├── git.cc │ │ │ ├── git.h │ │ │ ├── gitstatus.cc │ │ │ ├── index.cc │ │ │ ├── index.h │ │ │ ├── logging.cc │ │ │ ├── logging.h │ │ │ ├── options.cc │ │ │ ├── options.h │ │ │ ├── print.h │ │ │ ├── repo.cc │ │ │ ├── repo.h │ │ │ ├── repo_cache.cc │ │ │ ├── repo_cache.h │ │ │ ├── request.cc │ │ │ ├── request.h │ │ │ ├── response.cc │ │ │ ├── response.h │ │ │ ├── scope_guard.h │ │ │ ├── serialization.h │ │ │ ├── stat.h │ │ │ ├── string_cmp.h │ │ │ ├── string_view.h │ │ │ ├── strings.cc │ │ │ ├── strings.h │ │ │ ├── tag_db.cc │ │ │ ├── tag_db.h │ │ │ ├── thread_pool.cc │ │ │ ├── thread_pool.h │ │ │ ├── time.h │ │ │ ├── timer.cc │ │ │ ├── timer.h │ │ │ └── tribool.h │ │ └── usrbin │ │ │ └── .gitkeep │ ├── pinyin-complete │ │ └── pinyin-comp.zsh │ ├── zsh-256color │ │ ├── LICENSE │ │ ├── README.md │ │ └── zsh-256color.plugin.zsh │ ├── zsh-autosuggestions │ │ ├── .circleci │ │ │ └── config.yml │ │ ├── .editorconfig │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE │ │ │ │ ├── bug-report.md │ │ │ │ └── feature_request.md │ │ ├── .rspec │ │ ├── .rubocop.yml │ │ ├── .ruby-version │ │ ├── CHANGELOG.md │ │ ├── DESCRIPTION │ │ ├── Dockerfile │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── INSTALL.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── URL │ │ ├── VERSION │ │ ├── ZSH_VERSIONS │ │ ├── install_test_zsh.sh │ │ ├── spec │ │ │ ├── async_spec.rb │ │ │ ├── integrations │ │ │ │ ├── auto_cd_spec.rb │ │ │ │ ├── bracketed_paste_magic_spec.rb │ │ │ │ ├── client_zpty_spec.rb │ │ │ │ ├── glob_subst_spec.rb │ │ │ │ ├── rebound_bracket_spec.rb │ │ │ │ ├── vi_mode_spec.rb │ │ │ │ ├── wrapped_widget_spec.rb │ │ │ │ └── zle_input_stack_spec.rb │ │ │ ├── kill_ring_spec.rb │ │ │ ├── line_init_spec.rb │ │ │ ├── multi_line_spec.rb │ │ │ ├── options │ │ │ │ ├── buffer_max_size_spec.rb │ │ │ │ ├── highlight_style_spec.rb │ │ │ │ ├── original_widget_prefix_spec.rb │ │ │ │ ├── strategy_spec.rb │ │ │ │ ├── use_async_spec.rb │ │ │ │ └── widget_lists_spec.rb │ │ │ ├── spec_helper.rb │ │ │ ├── strategies │ │ │ │ ├── completion_spec.rb │ │ │ │ ├── history_spec.rb │ │ │ │ ├── match_prev_cmd_spec.rb │ │ │ │ └── special_characters_helper.rb │ │ │ ├── terminal_session.rb │ │ │ └── widgets │ │ │ │ ├── disable_spec.rb │ │ │ │ ├── enable_spec.rb │ │ │ │ ├── fetch_spec.rb │ │ │ │ └── toggle_spec.rb │ │ ├── src │ │ │ ├── async.zsh │ │ │ ├── bind.zsh │ │ │ ├── config.zsh │ │ │ ├── fetch.zsh │ │ │ ├── highlight.zsh │ │ │ ├── start.zsh │ │ │ ├── strategies │ │ │ │ ├── completion.zsh │ │ │ │ ├── history.zsh │ │ │ │ └── match_prev_cmd.zsh │ │ │ ├── util.zsh │ │ │ └── widgets.zsh │ │ ├── zsh-autosuggestions.plugin.zsh │ │ └── zsh-autosuggestions.zsh │ ├── zsh-completion-generator │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── help2comp.py │ │ └── zsh-completion-generator.plugin.zsh │ ├── zsh-defer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── docs │ │ │ ├── zsh-startup-with-defer.gif │ │ │ └── zsh-startup-without-defer.gif │ │ ├── zsh-defer │ │ └── zsh-defer.plugin.zsh │ ├── zsh-expand-all │ │ ├── COPYRIGHT │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── zsh-expand-all.plugin.zsh │ │ └── zsh-expand-all.zsh │ └── zsh-syntax-highlighting │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .github │ │ └── workflows │ │ │ └── test.yml │ │ ├── .gitignore │ │ ├── .revision-hash │ │ ├── .version │ │ ├── COPYING.md │ │ ├── HACKING.md │ │ ├── INSTALL.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── changelog.md │ │ ├── docs │ │ ├── highlighters.md │ │ └── highlighters │ │ │ ├── brackets.md │ │ │ ├── cursor.md │ │ │ ├── line.md │ │ │ ├── main.md │ │ │ ├── pattern.md │ │ │ ├── regexp.md │ │ │ └── root.md │ │ ├── highlighters │ │ ├── README.md │ │ ├── brackets │ │ │ ├── README.md │ │ │ ├── brackets-highlighter.zsh │ │ │ └── test-data │ │ │ │ ├── cursor-matchingbracket-line-finish.zsh │ │ │ │ ├── cursor-matchingbracket.zsh │ │ │ │ ├── empty-styles.zsh │ │ │ │ ├── loop-styles.zsh │ │ │ │ ├── mismatch-patentheses.zsh │ │ │ │ ├── near-quotes.zsh │ │ │ │ ├── nested-parentheses.zsh │ │ │ │ ├── only-error.zsh │ │ │ │ ├── quoted-patentheses.zsh │ │ │ │ ├── simple-parentheses.zsh │ │ │ │ ├── unclosed-patentheses.zsh │ │ │ │ └── unclosed-patentheses2.zsh │ │ ├── cursor │ │ │ ├── README.md │ │ │ └── cursor-highlighter.zsh │ │ ├── line │ │ │ ├── README.md │ │ │ └── line-highlighter.zsh │ │ ├── main │ │ │ ├── README.md │ │ │ ├── main-highlighter.zsh │ │ │ └── test-data │ │ │ │ ├── abspath-in-command-position1.zsh │ │ │ │ ├── abspath-in-command-position1b.zsh │ │ │ │ ├── abspath-in-command-position2.zsh │ │ │ │ ├── abspath-in-command-position3.zsh │ │ │ │ ├── abspath-in-command-position3b.zsh │ │ │ │ ├── abspath-in-command-position4.zsh │ │ │ │ ├── abspath-in-command-position5.zsh │ │ │ │ ├── alias-assignment1.zsh │ │ │ │ ├── alias-basic.zsh │ │ │ │ ├── alias-brackets.zsh │ │ │ │ ├── alias-command-substitution.zsh │ │ │ │ ├── alias-comment1.zsh │ │ │ │ ├── alias-comment2.zsh │ │ │ │ ├── alias-complex.zsh │ │ │ │ ├── alias-empty.zsh │ │ │ │ ├── alias-eponymous1.zsh │ │ │ │ ├── alias-eponymous2.zsh │ │ │ │ ├── alias-in-cmdsubst.zsh │ │ │ │ ├── alias-loop.zsh │ │ │ │ ├── alias-loop2.zsh │ │ │ │ ├── alias-nested-precommand.zsh │ │ │ │ ├── alias-nested.zsh │ │ │ │ ├── alias-parameter.zsh │ │ │ │ ├── alias-precommand-option-argument1.zsh │ │ │ │ ├── alias-precommand-option-argument2.zsh │ │ │ │ ├── alias-precommand-option-argument3.zsh │ │ │ │ ├── alias-precommand-option-argument4.zsh │ │ │ │ ├── alias-quoted.zsh │ │ │ │ ├── alias-redirect.zsh │ │ │ │ ├── alias-reuse1.zsh │ │ │ │ ├── alias-reuse2.zsh │ │ │ │ ├── alias-reuse3.zsh │ │ │ │ ├── alias-reuse4.zsh │ │ │ │ ├── alias-reuse5.zsh │ │ │ │ ├── alias-self.zsh │ │ │ │ ├── alias-self2.zsh │ │ │ │ ├── alias-to-dir.zsh │ │ │ │ ├── alias-to-dir1b.zsh │ │ │ │ ├── alias-unknown-token1.zsh │ │ │ │ ├── alias-unknown-token2.zsh │ │ │ │ ├── alias.zsh │ │ │ │ ├── always1.zsh │ │ │ │ ├── always2.zsh │ │ │ │ ├── always3.zsh │ │ │ │ ├── anonymous-function.zsh │ │ │ │ ├── arg0-colon.zsh │ │ │ │ ├── arith-cmdsubst-mess.zsh │ │ │ │ ├── arith1.zsh │ │ │ │ ├── arith2.zsh │ │ │ │ ├── arithmetic-command-substitution.zsh │ │ │ │ ├── arithmetic-doubled-parens.zsh │ │ │ │ ├── arithmetic-empty.zsh │ │ │ │ ├── arithmetic-evaluation.zsh │ │ │ │ ├── arithmetic-hist-expn.zsh │ │ │ │ ├── arithmetic-invalid-chars.zsh │ │ │ │ ├── arithmetic-multiplication.zsh │ │ │ │ ├── arithmetic-nested.zsh │ │ │ │ ├── arithmetic-quoted.zsh │ │ │ │ ├── arithmetic-unclosed.zsh │ │ │ │ ├── arithmetic-unfinished.zsh │ │ │ │ ├── array-cmdsep1.zsh │ │ │ │ ├── array-cmdsep2.zsh │ │ │ │ ├── array-cmdsep3.zsh │ │ │ │ ├── assign-append.zsh │ │ │ │ ├── assign-argv.zsh │ │ │ │ ├── assign-array.zsh │ │ │ │ ├── assign-array2.zsh │ │ │ │ ├── assign-array3.zsh │ │ │ │ ├── assign-invalid-command.zsh │ │ │ │ ├── assign-not-array.zsh │ │ │ │ ├── assign-not-array2.zsh │ │ │ │ ├── assign-quoted-cmdsubst.zsh │ │ │ │ ├── assign-semicolon.zsh │ │ │ │ ├── assign-subshell.zsh │ │ │ │ ├── assign-value-quote1.zsh │ │ │ │ ├── assign-value-quote2.zsh │ │ │ │ ├── assign.zsh │ │ │ │ ├── assignment-before-resword1.zsh │ │ │ │ ├── assignment-before-resword2.zsh │ │ │ │ ├── assignment-before-resword3.zsh │ │ │ │ ├── assignment-before-resword4.zsh │ │ │ │ ├── assignment-before-resword5.zsh │ │ │ │ ├── assignment-quoted.zsh │ │ │ │ ├── back-quoted-argument.zsh │ │ │ │ ├── back-quoted-open.zsh │ │ │ │ ├── backslash-continuation.zsh │ │ │ │ ├── backslash-continuation2.zsh │ │ │ │ ├── backslash-space.zsh │ │ │ │ ├── backslash.zsh │ │ │ │ ├── bang-assign-array.zsh │ │ │ │ ├── bang-assign-scalar.zsh │ │ │ │ ├── bang-pipeline.zsh │ │ │ │ ├── braces1.zsh │ │ │ │ ├── braces2.zsh │ │ │ │ ├── brackets-matching1.zsh │ │ │ │ ├── brackets-matching2.zsh │ │ │ │ ├── brackets-mismatch1.zsh │ │ │ │ ├── brackets-mismatch10-if-negative.zsh │ │ │ │ ├── brackets-mismatch2.zsh │ │ │ │ ├── brackets-mismatch3.zsh │ │ │ │ ├── brackets-mismatch4.zsh │ │ │ │ ├── brackets-mismatch5.zsh │ │ │ │ ├── brackets-mismatch6.zsh │ │ │ │ ├── brackets-mismatch7.zsh │ │ │ │ ├── brackets-mismatch8-if-positive.zsh │ │ │ │ ├── brackets-mismatch8.zsh │ │ │ │ ├── brackets-mismatch9-if-positive.zsh │ │ │ │ ├── brackets-premature-termination.zsh │ │ │ │ ├── cdpath-abspath.zsh │ │ │ │ ├── cmdpos-elision-partial.zsh │ │ │ │ ├── command-substitution-adjacent.zsh │ │ │ │ ├── command-substitution-in-assignment.zsh │ │ │ │ ├── command-substitution-unclosed.zsh │ │ │ │ ├── commandseparator.zsh │ │ │ │ ├── comment-followed.zsh │ │ │ │ ├── comment-leading.zsh │ │ │ │ ├── comment-off.zsh │ │ │ │ ├── comments.zsh │ │ │ │ ├── commmand-parameter.zsh │ │ │ │ ├── control-flow.zsh │ │ │ │ ├── control-flow2.zsh │ │ │ │ ├── control-flow3.zsh │ │ │ │ ├── cthulhu.zsh │ │ │ │ ├── dinbrack1.zsh │ │ │ │ ├── dirs_blacklist.zsh │ │ │ │ ├── dollar-dollar.zsh │ │ │ │ ├── dollar-noise.zsh │ │ │ │ ├── dollar-paren.zsh │ │ │ │ ├── dollar-quoted.zsh │ │ │ │ ├── dollar-quoted2.zsh │ │ │ │ ├── dollar-quoted3.zsh │ │ │ │ ├── double-hyphen-option.zsh │ │ │ │ ├── double-quoted.zsh │ │ │ │ ├── double-quoted2.zsh │ │ │ │ ├── double-quoted3.zsh │ │ │ │ ├── double-quoted4.zsh │ │ │ │ ├── empty-command-newline.zsh │ │ │ │ ├── empty-command.zsh │ │ │ │ ├── empty-command2.zsh │ │ │ │ ├── empty-line.zsh │ │ │ │ ├── equals1.zsh │ │ │ │ ├── equals2.zsh │ │ │ │ ├── equals3.zsh │ │ │ │ ├── equals4.zsh │ │ │ │ ├── escaped-single-quote.zsh │ │ │ │ ├── exec-redirection1.zsh │ │ │ │ ├── fd-target-not-filename.zsh │ │ │ │ ├── function-altsyntax.zsh │ │ │ │ ├── function-named1.zsh │ │ │ │ ├── function-named2.zsh │ │ │ │ ├── function.zsh │ │ │ │ ├── glob.zsh │ │ │ │ ├── global-alias1.zsh │ │ │ │ ├── globs-with-quoting.zsh │ │ │ │ ├── hashed-command.zsh │ │ │ │ ├── history-double-quoted-escaped.zsh │ │ │ │ ├── history-double-quoted-followed.zsh │ │ │ │ ├── history-double-quoted-no.zsh │ │ │ │ ├── history-double-quoted-unescaped.zsh │ │ │ │ ├── history-double-quoted-yes.zsh │ │ │ │ ├── history-expansion.zsh │ │ │ │ ├── history-expansion2.zsh │ │ │ │ ├── inheritance.zsh │ │ │ │ ├── jobsubst-isnt-glob.zsh │ │ │ │ ├── jobsubst-isnt-glob2.zsh │ │ │ │ ├── loop-newline.zsh │ │ │ │ ├── meta-no-eval1.zsh │ │ │ │ ├── meta-no-eval2.zsh │ │ │ │ ├── multiline-array-assignment1.zsh │ │ │ │ ├── multiline-string.zsh │ │ │ │ ├── multiline-string2.zsh │ │ │ │ ├── multios-negates-globbing.zsh │ │ │ │ ├── multios-negates-globbing2.zsh │ │ │ │ ├── multiple-quotes.zsh │ │ │ │ ├── multiple-redirections.zsh │ │ │ │ ├── noglob-alias.zsh │ │ │ │ ├── noglob-always.zsh │ │ │ │ ├── noglob1.zsh │ │ │ │ ├── noglob2.zsh │ │ │ │ ├── noglob3.zsh │ │ │ │ ├── noglob4.zsh │ │ │ │ ├── null-exec.zsh │ │ │ │ ├── null-exec2-printenv.zsh │ │ │ │ ├── number_range-glob.zsh │ │ │ │ ├── off-by-one.zsh │ │ │ │ ├── opt-shwordsplit1.zsh │ │ │ │ ├── optimized-cmdsubst-input.zsh │ │ │ │ ├── option-dollar-quote-isnt-filename.zsh │ │ │ │ ├── option-path_dirs.zsh │ │ │ │ ├── option-with-quotes.zsh │ │ │ │ ├── order-path-after-dollar.zsh │ │ │ │ ├── order-path-before-globbing.zsh │ │ │ │ ├── param-positional-in-array-append.zsh │ │ │ │ ├── param-precommand-option-argument1.zsh │ │ │ │ ├── param-precommand-option-argument3.zsh │ │ │ │ ├── parameter-elision-command-word.zsh │ │ │ │ ├── parameter-expansion-shwordsplit.zsh │ │ │ │ ├── parameter-expansion-untokenized1.zsh │ │ │ │ ├── parameter-expansion-untokenized2.zsh │ │ │ │ ├── parameter-star.zsh │ │ │ │ ├── parameter-to-global-alias.zsh │ │ │ │ ├── parameter-value-contains-command-position1.zsh │ │ │ │ ├── parameter-value-contains-command-position2.zsh │ │ │ │ ├── pasted-quotes.zsh │ │ │ │ ├── path-broken-symlink.zsh │ │ │ │ ├── path-dollared-word.zsh │ │ │ │ ├── path-dollared-word2.zsh │ │ │ │ ├── path-dollared-word3.zsh │ │ │ │ ├── path-dollared-word3b.zsh │ │ │ │ ├── path-dollared-word4.zsh │ │ │ │ ├── path-mixed-quoting.zsh │ │ │ │ ├── path-separators.zsh │ │ │ │ ├── path-separators2.zsh │ │ │ │ ├── path-space.zsh │ │ │ │ ├── path-tilde-home.zsh │ │ │ │ ├── path-tilde-home2.zsh │ │ │ │ ├── path-tilde-home3.zsh │ │ │ │ ├── path-tilde-named.zsh │ │ │ │ ├── path.zsh │ │ │ │ ├── path_prefix.zsh │ │ │ │ ├── path_prefix2.zsh │ │ │ │ ├── path_prefix3.zsh │ │ │ │ ├── plain-file-in-command-position.zsh │ │ │ │ ├── precommand-killing1.zsh │ │ │ │ ├── precommand-killing2.zsh │ │ │ │ ├── precommand-then-assignment.zsh │ │ │ │ ├── precommand-type1.zsh │ │ │ │ ├── precommand-type2.zsh │ │ │ │ ├── precommand-type3.zsh │ │ │ │ ├── precommand-uninstalled.zsh │ │ │ │ ├── precommand-unknown-option.zsh │ │ │ │ ├── precommand.zsh │ │ │ │ ├── precommand2.zsh │ │ │ │ ├── precommand3.zsh │ │ │ │ ├── precommand4.zsh │ │ │ │ ├── prefix-redirection.zsh │ │ │ │ ├── process-substitution-after-redirection.zsh │ │ │ │ ├── process-substitution-redirection-isnt-globbing.zsh │ │ │ │ ├── process-substitution.zsh │ │ │ │ ├── process-substitution2.zsh │ │ │ │ ├── quoted-command-substitution-empty.zsh │ │ │ │ ├── quoted-redirection-in-command-word.zsh │ │ │ │ ├── rc-quotes.zsh │ │ │ │ ├── redirection-comment.zsh │ │ │ │ ├── redirection-from-param.zsh │ │ │ │ ├── redirection-in-cmdsubst.zsh │ │ │ │ ├── redirection-inhibits-elision.zsh │ │ │ │ ├── redirection-is-not-option.zsh │ │ │ │ ├── redirection-special-cases.zsh │ │ │ │ ├── redirection.zsh │ │ │ │ ├── redirection2.zsh │ │ │ │ ├── redirection3.zsh │ │ │ │ ├── reserved-word.zsh │ │ │ │ ├── simple-command.zsh │ │ │ │ ├── simple-redirection.zsh │ │ │ │ ├── subshell.zsh │ │ │ │ ├── sudo-command.zsh │ │ │ │ ├── sudo-comment.zsh │ │ │ │ ├── sudo-longopt.zsh │ │ │ │ ├── sudo-redirection.zsh │ │ │ │ ├── sudo-redirection2.zsh │ │ │ │ ├── sudo-redirection3.zsh │ │ │ │ ├── tilde-command-word.zsh │ │ │ │ ├── time-and-nocorrect1.zsh │ │ │ │ ├── time-and-nocorrect2.zsh │ │ │ │ ├── unbackslash.zsh │ │ │ │ ├── unknown-command.zsh │ │ │ │ ├── vanilla-newline.zsh │ │ │ │ └── vi-linewise-mode.zsh │ │ ├── pattern │ │ │ ├── README.md │ │ │ ├── pattern-highlighter.zsh │ │ │ └── test-data │ │ │ │ └── rm-rf.zsh │ │ ├── regexp │ │ │ ├── README.md │ │ │ ├── regexp-highlighter.zsh │ │ │ └── test-data │ │ │ │ ├── complex.zsh │ │ │ │ ├── subexpression.zsh │ │ │ │ └── word-boundary.zsh │ │ └── root │ │ │ ├── README.md │ │ │ └── root-highlighter.zsh │ │ ├── images │ │ ├── after1-smaller.png │ │ ├── after1.png │ │ ├── after2-smaller.png │ │ ├── after2.png │ │ ├── after3-smaller.png │ │ ├── after3.png │ │ ├── after4-smaller.png │ │ ├── before1-smaller.png │ │ ├── before1.png │ │ ├── before2-smaller.png │ │ ├── before2.png │ │ ├── before3-smaller.png │ │ ├── before3.png │ │ ├── before4-smaller.png │ │ ├── preview-smaller.png │ │ └── preview.png │ │ ├── release.md │ │ ├── tests │ │ ├── README.md │ │ ├── edit-failed-tests │ │ ├── generate.zsh │ │ ├── tap-colorizer.zsh │ │ ├── tap-filter │ │ ├── test-highlighting.zsh │ │ ├── test-perfs.zsh │ │ └── test-zprof.zsh │ │ ├── zsh-syntax-highlighting.plugin.zsh │ │ └── zsh-syntax-highlighting.zsh │ ├── scripts │ ├── fzf-fasd.zsh │ ├── fzf-google-chrome.zsh │ ├── fzf-tab-config.zsh │ └── riggrep-fzf-vim.sh │ └── themes │ └── mcpp.zsh-theme ├── package.json ├── rcrc ├── tag-bin └── local │ └── bin │ ├── ansi │ ├── display_text_in_text_editor │ ├── keep-zerotier-online.sh │ ├── nowplaying-cli │ └── pinyin-comp ├── tag-claude └── claude │ ├── agents │ └── code-review.md │ ├── commands │ └── project │ │ ├── code-explain.md │ │ ├── code-review.md │ │ ├── gen-prd-tech.md │ │ └── test-and-fix.md │ ├── settings.json │ └── statusline.sh ├── tag-karabiner └── config │ └── karabiner │ ├── assets │ └── complex_modifications │ │ ├── alice80.json │ │ ├── caps_enhance.json │ │ ├── control_enhance.json │ │ ├── ifalice.json │ │ ├── tiny_keyboard.json │ │ ├── tmux_enhance.json │ │ ├── v75.json │ │ └── yabai_enhance.json │ └── karabiner.json ├── tag-mpv └── config │ └── mpv │ ├── input.conf │ ├── mpv.conf │ ├── script-settings │ ├── Blackbox.conf.example │ ├── Colorbox.conf.example │ └── README.md │ └── scripts │ ├── Blackbox.js │ ├── Colorbox.js │ ├── auto-keep-gui-open.lua │ ├── autoload.lua │ ├── cycle-video-rotate.lua │ ├── modules.js │ ├── AssFormat.js │ ├── MicroUtils.js │ ├── Options.js │ ├── PathIndex.js │ ├── PathTools.js │ ├── PlaylistManager.js │ ├── PseudoRandom.js │ ├── RandomCycle.js │ ├── SelectionMenu.js │ └── Stack.js │ ├── multi-command-if.lua │ ├── quick-scale.lua │ └── recent.lua ├── tag-yabai ├── config │ ├── record_window_id.sh │ └── yabai │ │ ├── auto-focus-to-new-one-when-window-destroyed.sh │ │ ├── auto_close_space_when_space_empty.sh │ │ ├── change-random-wallpaper.sh │ │ ├── change-window-border-color-when-window-focused.sh │ │ ├── create_new_space.sh │ │ ├── destroy_space.sh │ │ ├── docked-cursor.sh │ │ ├── get_current_shurufa │ │ ├── get_current_shurufa_for_spacebar.sh │ │ ├── initialization.sh │ │ ├── recent-window-helper.sh │ │ ├── scale-window.sh │ │ ├── send_to_next_display.sh │ │ ├── spacebar-lib.sh │ │ ├── spacebar_left_command.sh │ │ ├── spacebar_right_command.sh │ │ ├── switch_window_opacity.sh │ │ ├── toggle-display-center-floating-tiling.sh │ │ ├── toggle-window-bsp-stack.sh │ │ ├── toggle-window-floating-tiling.sh │ │ └── toggle-window-sticking-tiling.sh ├── limelightrc ├── skhdrc ├── spacebarrc └── yabairc ├── tmux.conf ├── tmux.conf.local ├── tmux ├── .gitattributes ├── .tmux.conf ├── LICENSE.MIT ├── LICENSE.WTFPLv2 ├── README.md └── plugins │ ├── extrakto │ ├── .editorconfig │ ├── .github │ │ └── workflows │ │ │ └── check.yml │ ├── HELP.md │ ├── LICENSE │ ├── README.md │ ├── extrakto.conf │ ├── extrakto.py │ ├── extrakto.tmux │ └── scripts │ │ ├── extrakto.sh │ │ ├── helpers.sh │ │ └── open.sh │ ├── tmux-continuum │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── continuum.tmux │ ├── docs │ │ ├── automatic_start.md │ │ ├── continuum_status.md │ │ ├── faq.md │ │ ├── multiple_tmux_servers.md │ │ └── systemd_details.md │ └── scripts │ │ ├── check_tmux_version.sh │ │ ├── continuum_restore.sh │ │ ├── continuum_save.sh │ │ ├── continuum_status.sh │ │ ├── handle_tmux_automatic_start.sh │ │ ├── handle_tmux_automatic_start │ │ ├── README.md │ │ ├── osx_disable.sh │ │ ├── osx_enable.sh │ │ ├── osx_iterm_start_tmux.sh │ │ ├── osx_kitty_start_tmux.sh │ │ ├── osx_terminal_start_tmux.sh │ │ ├── systemd_disable.sh │ │ └── systemd_enable.sh │ │ ├── helpers.sh │ │ ├── shared.sh │ │ └── variables.sh │ ├── tmux-jump │ ├── .travis.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── README.md │ ├── THANKS.md │ ├── assets │ │ ├── tmux-jump-demo.yml │ │ ├── tmux-jump-logo.png │ │ └── tmux-jump-logo.svg │ ├── scripts │ │ ├── tmux-jump.rb │ │ ├── tmux-jump.sh │ │ └── utils.sh │ ├── spec │ │ └── tmux_jump_spec.rb │ └── tmux-jump.tmux │ ├── tmux-notify │ ├── .auto-changelog │ ├── .bumpversion.cfg │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── resources │ │ ├── tmux-notify-icon.svg │ │ └── tmux-notify-logo.svg │ ├── scripts │ │ ├── cancel.sh │ │ ├── helpers.sh │ │ ├── notify.sh │ │ └── variables.sh │ └── tnotify.tmux │ ├── tmux-open │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── open.tmux │ ├── scripts │ │ ├── helpers.sh │ │ └── tmux_open_error_message.sh │ └── video │ │ ├── screencast_img.png │ │ └── script.md │ ├── tmux-power │ ├── LICENSE │ ├── README.md │ └── tmux-power.tmux │ ├── tmux-resurrect │ ├── .gitattributes │ ├── .gitmodules │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── docs │ │ ├── custom_key_bindings.md │ │ ├── hooks.md │ │ ├── migrating_from_tmuxinator.md │ │ ├── restoring_pane_contents.md │ │ ├── restoring_programs.md │ │ ├── restoring_shell_history.md │ │ ├── restoring_vim_and_neovim_sessions.md │ │ └── save_dir.md │ ├── lib │ │ └── tmux-test │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── Vagrantfile │ │ │ ├── run_framework_tests │ │ │ ├── run_tests │ │ │ ├── setup │ │ │ ├── tests │ │ │ ├── helpers │ │ │ │ └── helpers.sh │ │ │ ├── run_tests_in_isolation │ │ │ ├── test_basic_script_execution.sh │ │ │ ├── test_default_session_name.sh │ │ │ └── test_tmux_scripting.sh │ │ │ ├── vagrant_centos_provisioning.sh │ │ │ └── vagrant_ubuntu_provisioning.sh │ ├── resurrect.tmux │ ├── run_tests │ ├── save_command_strategies │ │ ├── gdb.sh │ │ ├── linux_procfs.sh │ │ ├── pgrep.sh │ │ └── ps.sh │ ├── scripts │ │ ├── check_tmux_version.sh │ │ ├── helpers.sh │ │ ├── process_restore_helpers.sh │ │ ├── restore.exp │ │ ├── restore.sh │ │ ├── save.sh │ │ ├── spinner_helpers.sh │ │ ├── tmux_spinner.sh │ │ └── variables.sh │ ├── strategies │ │ ├── irb_default_strategy.sh │ │ ├── mosh-client_default_strategy.sh │ │ ├── nvim_session.sh │ │ └── vim_session.sh │ ├── tests │ │ ├── fixtures │ │ │ ├── restore_file.txt │ │ │ └── save_file.txt │ │ ├── helpers │ │ │ ├── create_and_save_tmux_test_environment.exp │ │ │ ├── expect_helpers.exp │ │ │ ├── helpers.sh │ │ │ ├── restore_and_save_tmux_test_environment.exp │ │ │ └── resurrect_helpers.sh │ │ ├── run_tests_in_isolation │ │ ├── test_resurrect_restore.sh │ │ └── test_resurrect_save.sh │ └── video │ │ ├── issue_vid.png │ │ ├── screencast_img.png │ │ └── script.md │ ├── tmux-sensible │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ └── sensible.tmux │ ├── tmux-urlview │ ├── LICENSE.md │ ├── README.md │ └── urlview.tmux │ ├── tmux-yank │ ├── .editorconfig │ ├── .gitattributes │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── Vagrantfile │ ├── _config.yml │ ├── citest │ ├── scripts │ │ ├── copy_line.sh │ │ ├── copy_pane_pwd.sh │ │ └── helpers.sh │ ├── vagrant_provisioning.sh │ ├── video │ │ ├── README.md │ │ ├── screencast_img.png │ │ └── script.md │ └── yank.tmux │ └── tpm │ ├── .gitattributes │ ├── .gitmodules │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── HOW_TO_PLUGIN.md │ ├── LICENSE.md │ ├── README.md │ ├── bin │ ├── clean_plugins │ ├── install_plugins │ └── update_plugins │ ├── bindings │ ├── clean_plugins │ ├── install_plugins │ └── update_plugins │ ├── docs │ ├── automatic_tpm_installation.md │ ├── changing_plugins_install_dir.md │ ├── how_to_create_plugin.md │ ├── managing_plugins_via_cmd_line.md │ └── tpm_not_working.md │ ├── scripts │ ├── check_tmux_version.sh │ ├── clean_plugins.sh │ ├── helpers │ │ ├── plugin_functions.sh │ │ ├── shell_echo_functions.sh │ │ ├── tmux_echo_functions.sh │ │ ├── tmux_utils.sh │ │ └── utility.sh │ ├── install_plugins.sh │ ├── source_plugins.sh │ ├── update_plugin.sh │ ├── update_plugin_prompt_handler.sh │ └── variables.sh │ ├── tests │ ├── expect_failed_plugin_download │ ├── expect_successful_clean_plugins │ ├── expect_successful_multiple_plugins_download │ ├── expect_successful_plugin_download │ ├── expect_successful_update_of_a_single_plugin │ ├── expect_successful_update_of_all_plugins │ ├── helpers │ │ └── tpm.sh │ ├── test_plugin_clean.sh │ ├── test_plugin_installation.sh │ ├── test_plugin_installation_legacy.sh │ ├── test_plugin_sourcing.sh │ └── test_plugin_update.sh │ └── tpm ├── vimrc ├── zim └── custom │ ├── after │ └── plugin │ │ ├── agkozak-zsh-prompt.zsh │ │ ├── alias-tip.zsh │ │ ├── zsh-autosuggestions.zsh │ │ ├── zsh-syntax-highlight.zsh │ │ └── zsh-vi-mode.zsh │ ├── modules │ └── mcpp │ │ ├── mcpp.zsh-theme │ │ └── mcpp.zsh-theme.zwc │ ├── plugins │ └── zsh-completion-generator │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── help2comp.py │ │ ├── zsh-completion-generator.plugin.zsh │ │ └── zsh-completion-generator.plugin.zsh.zwc │ └── scripts │ ├── fzf-fasd.zsh │ ├── fzf-fasd.zsh.zwc │ ├── fzf-google-chrome.zsh │ ├── fzf-google-chrome.zsh.zwc │ ├── fzf-tab-config.zsh │ ├── fzf-tab-config.zsh.zwc │ └── riggrep-fzf-vim.sh ├── zimrc ├── zsh_enhance ├── zshrc └── zshrcbak /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/.gitignore -------------------------------------------------------------------------------- /.other-backup/mcpp.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/.other-backup/mcpp.itermcolors -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dotfiles 2 | 安装`rcm`后执行`rcup` 3 | -------------------------------------------------------------------------------- /config/atuin/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/atuin/config.toml -------------------------------------------------------------------------------- /config/my-scripts/git/patch-to-others.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/my-scripts/git/patch-to-others.sh -------------------------------------------------------------------------------- /config/nvim/after/plugin/bufferline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/bufferline.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/colors.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/dashboard-nvim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/dashboard-nvim.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/easymotion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/easymotion.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/fugitive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/fugitive.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/gitsigns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/gitsigns.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/indent-blackline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/indent-blackline.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/lastplace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/lastplace.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/lsp.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/lualine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/lualine.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/nvim-notify.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/nvim-notify.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/nvimtree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/nvimtree.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/telescope.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/toggleterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/toggleterm.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/treesitter.lua -------------------------------------------------------------------------------- /config/nvim/after/plugin/undotree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/after/plugin/undotree.lua -------------------------------------------------------------------------------- /config/nvim/init.lua: -------------------------------------------------------------------------------- 1 | require("config") 2 | -------------------------------------------------------------------------------- /config/nvim/lua/config/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/config/init.lua -------------------------------------------------------------------------------- /config/nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /config/nvim/lua/config/remap-vscode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/config/remap-vscode.lua -------------------------------------------------------------------------------- /config/nvim/lua/config/remap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/config/remap.lua -------------------------------------------------------------------------------- /config/nvim/lua/config/set.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/config/set.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/appearence.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/plugins/appearence.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/autocompletion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/plugins/autocompletion.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/easy-edit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/plugins/easy-edit.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/file-navigator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/plugins/file-navigator.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/formatter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/plugins/formatter.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/git.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/plugins/git.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/infra.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/plugins/infra.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/plugins/lsp.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/nvim/lua/plugins/utils.lua -------------------------------------------------------------------------------- /config/sketchybar/colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/colors.sh -------------------------------------------------------------------------------- /config/sketchybar/fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/fonts.sh -------------------------------------------------------------------------------- /config/sketchybar/icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/icons.sh -------------------------------------------------------------------------------- /config/sketchybar/items/battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/items/battery.sh -------------------------------------------------------------------------------- /config/sketchybar/items/clock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/items/clock.sh -------------------------------------------------------------------------------- /config/sketchybar/items/front_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/items/front_app.sh -------------------------------------------------------------------------------- /config/sketchybar/items/ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/items/ip.sh -------------------------------------------------------------------------------- /config/sketchybar/items/now_playing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/items/now_playing.sh -------------------------------------------------------------------------------- /config/sketchybar/items/output_devices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/items/output_devices.sh -------------------------------------------------------------------------------- /config/sketchybar/items/right.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/items/right.sh -------------------------------------------------------------------------------- /config/sketchybar/items/spaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/items/spaces.sh -------------------------------------------------------------------------------- /config/sketchybar/items/volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/items/volume.sh -------------------------------------------------------------------------------- /config/sketchybar/plugins/battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/plugins/battery.sh -------------------------------------------------------------------------------- /config/sketchybar/plugins/clock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/plugins/clock.sh -------------------------------------------------------------------------------- /config/sketchybar/plugins/front_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/plugins/front_app.sh -------------------------------------------------------------------------------- /config/sketchybar/plugins/ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/plugins/ip.sh -------------------------------------------------------------------------------- /config/sketchybar/plugins/now_playing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/plugins/now_playing.sh -------------------------------------------------------------------------------- /config/sketchybar/plugins/output_devices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/plugins/output_devices.sh -------------------------------------------------------------------------------- /config/sketchybar/plugins/space.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/plugins/space.sh -------------------------------------------------------------------------------- /config/sketchybar/plugins/volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/plugins/volume.sh -------------------------------------------------------------------------------- /config/sketchybar/sketchybarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/config/sketchybar/sketchybarrc -------------------------------------------------------------------------------- /gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/gitconfig -------------------------------------------------------------------------------- /hammerspoon/Spoons/AClock.spoon/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/AClock.spoon/docs.json -------------------------------------------------------------------------------- /hammerspoon/Spoons/AClock.spoon/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/AClock.spoon/init.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/SkyRocket.spoon/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/SkyRocket.spoon/CHANGELOG.md -------------------------------------------------------------------------------- /hammerspoon/Spoons/SkyRocket.spoon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/SkyRocket.spoon/README.md -------------------------------------------------------------------------------- /hammerspoon/Spoons/SkyRocket.spoon/doc/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/SkyRocket.spoon/doc/demo.gif -------------------------------------------------------------------------------- /hammerspoon/Spoons/SkyRocket.spoon/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/SkyRocket.spoon/init.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/SpoonInstall.spoon/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/SpoonInstall.spoon/docs.json -------------------------------------------------------------------------------- /hammerspoon/Spoons/SpoonInstall.spoon/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/SpoonInstall.spoon/init.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/.busted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/.busted -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/.gitignore: -------------------------------------------------------------------------------- 1 | luacov.stats.out 2 | -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/.luacheckrc -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | --color 3 | -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/.travis.yml -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/CHANGELOG.md -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/Gemfile -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/Gemfile.lock -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/README.md -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/Rakefile -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/bin/dev-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/bin/dev-setup -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/bin/installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/bin/installer -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/docs.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/docs/Integration_Tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/docs/Integration_Tests.md -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/images/vim-mode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/images/vim-mode.gif -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/images/vim-state-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/images/vim-state-diagram.svg -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/init.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/accessibility_buffer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/accessibility_buffer.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/app_watcher.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/app_watcher.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/axuielement.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/axuielement.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/block_cursor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/block_cursor.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/buffer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/buffer.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/command_state.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/command_state.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/config.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/contextual_modal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/contextual_modal.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/contextual_modal/registry.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/contextual_modal/registry.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/focus_watcher.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/focus_watcher.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/hot_patcher.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/hot_patcher.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/key_sequence.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/key_sequence.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/modal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/modal.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motion.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/back_big_word.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/back_big_word.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/back_word.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/back_word.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/backward_search.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/backward_search.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/between_chars.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/between_chars.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/big_word.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/big_word.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/current_selection.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/current_selection.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/down.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/down.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/end_of_word.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/end_of_word.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/entire_line.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/entire_line.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/first_line.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/first_line.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/first_non_blank.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/first_non_blank.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/forward_search.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/forward_search.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/in_word.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/in_word.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/last_line.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/last_line.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/left.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/left.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/line_beginning.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/line_beginning.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/line_end.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/line_end.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/noop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/noop.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/right.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/right.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/till_after_search.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/till_after_search.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/till_before_search.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/till_before_search.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/up.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/up.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/motions/word.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/motions/word.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/operator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/operator.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/operators/change.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/operators/change.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/operators/delete.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/operators/delete.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/operators/replace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/operators/replace.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/operators/yank.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/operators/yank.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/screen_dimmer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/screen_dimmer.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/selection.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/selection.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/state.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/state.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/state_indicator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/state_indicator.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/strategies/keyboard_strategy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/strategies/keyboard_strategy.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/strategy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/strategy.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/ax.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/ax.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/benchmark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/benchmark.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/browser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/browser.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/debug.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/find_first.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/find_first.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/inspect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/inspect.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/keys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/keys.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/log.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/number_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/number_utils.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/prequire.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/prequire.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/set.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/set.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/statemachine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/statemachine.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/string_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/string_utils.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/table.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/times.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/times.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/version.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/version.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/visible_range.lua: -------------------------------------------------------------------------------- 1 | local VisibleRange = {} 2 | -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/utils/visual.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/utils/visual.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/vim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/vim.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/lib/wait_for_char.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/lib/wait_for_char.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/buffer_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/buffer_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/config_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/config_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/features/big_word_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/features/big_word_spec.rb -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/features/delete_line_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/features/delete_line_spec.rb -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/features/delete_word_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/features/delete_word_spec.rb -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/features/linewise_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/features/linewise_spec.rb -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/features/visual_mode_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/features/visual_mode_spec.rb -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/fixtures/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/fixtures/textarea.html -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/motions/back_word_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/motions/back_word_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/motions/between_chars_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/motions/between_chars_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/motions/big_word_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/motions/big_word_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/motions/end_of_word_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/motions/end_of_word_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/motions/in_word_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/motions/in_word_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/motions/line_beginning_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/motions/line_beginning_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/motions/line_end_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/motions/line_end_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/motions/word_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/motions/word_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/operators/delete_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/operators/delete_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/operators/replace_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/operators/replace_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/selection_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/selection_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/spec_helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/spec_helper.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/spec_helper.rb -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/support/capybara.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/support/capybara.rb -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/support/chrome_kill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/support/chrome_kill.rb -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/support/hammerspoon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/support/hammerspoon.rb -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/support/text_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/support/text_helpers.rb -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/utils/number_utils_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/utils/number_utils_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/utils/string_utils_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/utils/string_utils_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/utils/table_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/utils/table_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/spec/utils/visual_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/spec/utils/visual_spec.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/hs/_asm/axuielement/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/hs/_asm/axuielement/docs.json -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/hs/_asm/axuielement/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/hs/_asm/axuielement/init.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/hs/_asm/axuielement/internal.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/hs/_asm/axuielement/internal.so -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/luautf8.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/luautf8.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/.gitattributes: -------------------------------------------------------------------------------- 1 | *.h linguist-language=C 2 | 3 | -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/.gitignore -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/.travis.yml -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/LICENSE -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/README.md -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/arm/lua-utf8.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/arm/lua-utf8.so -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/build-silicon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/build-silicon.sh -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/lutf8lib.c -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/parseucd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/parseucd.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/test.lua -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/unidata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/unidata.h -------------------------------------------------------------------------------- /hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/x86/lua-utf8.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/Spoons/VimMode.spoon/vendor/luautf8/x86/lua-utf8.so -------------------------------------------------------------------------------- /hammerspoon/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/init.lua -------------------------------------------------------------------------------- /hammerspoon/openNewChromeTab.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/openNewChromeTab.applescript -------------------------------------------------------------------------------- /hammerspoon/stackline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/stackline/.gitignore -------------------------------------------------------------------------------- /hammerspoon/stackline/conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/stackline/conf.lua -------------------------------------------------------------------------------- /hammerspoon/stackline/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/stackline/init.lua -------------------------------------------------------------------------------- /hammerspoon/stackline/lib/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/stackline/lib/utils.lua -------------------------------------------------------------------------------- /hammerspoon/stackline/lib/valid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/stackline/lib/valid.lua -------------------------------------------------------------------------------- /hammerspoon/stackline/stackline/configmanager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/stackline/stackline/configmanager.lua -------------------------------------------------------------------------------- /hammerspoon/stackline/stackline/query.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/stackline/stackline/query.lua -------------------------------------------------------------------------------- /hammerspoon/stackline/stackline/stack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/stackline/stackline/stack.lua -------------------------------------------------------------------------------- /hammerspoon/stackline/stackline/stackline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/stackline/stackline/stackline.lua -------------------------------------------------------------------------------- /hammerspoon/stackline/stackline/stackmanager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/stackline/stackline/stackmanager.lua -------------------------------------------------------------------------------- /hammerspoon/stackline/stackline/window.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/hammerspoon/stackline/stackline/window.lua -------------------------------------------------------------------------------- /ideavimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/ideavimrc -------------------------------------------------------------------------------- /lessfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/lessfilter -------------------------------------------------------------------------------- /myScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/myScript -------------------------------------------------------------------------------- /myjiaoben/curl/curltime.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/myjiaoben/curl/curltime.template -------------------------------------------------------------------------------- /oh-my-zsh/custom/deps/antigen.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/deps/antigen.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/.github/FUNDING.yml -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/.github/labeler.yml -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/.github/labels.yml -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/.github/workflows/import_labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/.github/workflows/import_labels.yml -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/.github/workflows/sync_labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/.github/workflows/sync_labels.yml -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/.github/workflows/test.yml -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/.gitignore -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/README.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/a.sh: -------------------------------------------------------------------------------- 1 | SHELL=bash 2 | source init.sh 3 | 4 | __enhancd::filepath::split_list echo 5 | 6 | bats test 7 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/config.ltsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/config.ltsv -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/enhancd.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/init.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/lib/fuzzy.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/lib/fuzzy.awk -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/lib/has_dup_lines.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/lib/has_dup_lines.awk -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/lib/help.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/lib/help.awk -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/lib/ltsv.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/lib/ltsv.awk -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/lib/reverse.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/lib/reverse.awk -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/lib/split.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/lib/split.awk -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/lib/step_by_step.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/lib/step_by_step.awk -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/lib/to_abspath.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/lib/to_abspath.awk -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/src/cd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/src/cd.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/src/command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/src/command.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/src/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/src/completion.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/src/filepath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/src/filepath.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/src/filter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/src/filter.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/src/flag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/src/flag.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/src/history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/src/history.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/src/ltsv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/src/ltsv.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/src/sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/src/sources.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/enhancd/test/filepath.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/enhancd/test/filepath.bats -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/.fast-make-targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/.fast-make-targets -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/.fast-read-ini-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/.fast-read-ini-file -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/.fast-run-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/.fast-run-command -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/.fast-run-git-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/.fast-run-git-command -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/.fast-zts-read-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/.fast-zts-read-all -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/.gitignore -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/.zunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/.zunit.yml -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/CHANGELOG.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/CHROMA_GUIDE.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/CHROMA_GUIDE.adoc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/DONATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/DONATIONS.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/LICENSE -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/README.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/THEME_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/THEME_GUIDE.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/_fast-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/_fast-theme -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/fast-highlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/fast-highlight -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/fast-string-highlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/fast-string-highlight -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/fast-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/fast-theme -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/203654.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/203654.gif -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/assign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/assign.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/brackets.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/brackets.gif -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/cmdsubst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/cmdsubst.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/cplx_cond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/cplx_cond.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/eval_cmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/eval_cmp.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/execfd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/execfd.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/execfd_cmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/execfd_cmp.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/for-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/for-loop.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/function.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/git_chroma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/git_chroma.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/heredoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/heredoc.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/herestring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/herestring.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/in_string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/in_string.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/math.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/math.gif -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/parameter.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/theme.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/typeset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/typeset.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/zcalc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/images/zcalc.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/share/free_theme.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/share/free_theme.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/test/parse.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/test/parse.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/test/to-parse.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/test/to-parse.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/tests/_output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/tests/_support/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/tests/_support/bootstrap: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env zsh 2 | # Write your bootstrap code here 3 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/tests/example.zunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/tests/example.zunit -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/tests/main.zunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/tests/main.zunit -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/clean.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/clean.ini -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/default.ini -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/forest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/forest.ini -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/free.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/free.ini -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/safari.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/safari.ini -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/spa.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/spa.ini -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/sv-orple.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/sv-orple.ini -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/sv-plant.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/sv-plant.ini -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/zdharma.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/themes/zdharma.ini -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-alias.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-alias.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-autoload.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-autoload.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-autorandr.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-autorandr.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-awk.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-awk.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-docker.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-docker.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-example.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-example.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-fpath_peq.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-fpath_peq.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-git.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-git.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-grep.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-grep.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-hub.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-hub.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-ionice.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-ionice.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-lab.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-lab.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-make.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-make.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-nice.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-nice.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-nmcli.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-nmcli.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-node.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-node.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-ogit.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-ogit.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-perl.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-perl.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-printf.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-printf.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-ruby.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-ruby.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-scp.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-scp.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-sh.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-sh.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-source.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-source.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-ssh.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-ssh.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-vim.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-vim.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-whatis.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-whatis.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-which.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-which.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-zinit.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/fast-syntax-highlighting/→chroma/-zinit.ch -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/.editorconfig -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | sandboxrepo 3 | git-open.1 4 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/.gitmodules -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/.travis.yml -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/LICENSE.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/README.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/changelog.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/git-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/git-open -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/git-open.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/git-open.1.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/git-open.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/git-open.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/issue_template.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/markdownlint.json -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/package-lock.json -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/package.json -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/git-open/test/git-open.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/git-open/test/git-open.bats -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/.clang-format -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/.gitattributes -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/.gitignore -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/.vscode/settings.json -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/LICENSE -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/Makefile -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/README.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/build -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/build.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/build.info -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/deps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/docs/listdir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/docs/listdir.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/gitstatus.plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/gitstatus.plugin.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/gitstatus.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/gitstatus.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/gitstatus.prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/gitstatus.prompt.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/gitstatus.prompt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/gitstatus.prompt.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/install -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/install.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/install.info -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/mbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/mbuild -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/algorithm.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/arena.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/arena.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/bits.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/check.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/check_dir_mtime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/check_dir_mtime.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/check_dir_mtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/check_dir_mtime.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/dir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/dir.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/dir.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/git.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/git.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/git.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/git.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/gitstatus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/gitstatus.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/index.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/index.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/logging.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/logging.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/options.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/options.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/print.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/repo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/repo.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/repo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/repo.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/repo_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/repo_cache.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/repo_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/repo_cache.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/request.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/request.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/request.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/response.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/response.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/response.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/scope_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/scope_guard.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/serialization.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/stat.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/string_cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/string_cmp.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/string_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/string_view.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/strings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/strings.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/strings.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/tag_db.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/tag_db.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/tag_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/tag_db.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/thread_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/thread_pool.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/thread_pool.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/time.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/timer.cc -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/timer.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/src/tribool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/gitstatus/src/tribool.h -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/gitstatus/usrbin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/pinyin-complete/pinyin-comp.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/pinyin-complete/pinyin-comp.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-256color/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-256color/LICENSE -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-256color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-256color/README.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-256color/zsh-256color.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-256color/zsh-256color.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/.circleci/config.yml -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/.editorconfig -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --format documentation 4 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/.rubocop.yml -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.3 2 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/CHANGELOG.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/DESCRIPTION: -------------------------------------------------------------------------------- 1 | Fish-like fast/unobtrusive autosuggestions for zsh. 2 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/Dockerfile -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/Gemfile -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/Gemfile.lock -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/INSTALL.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/LICENSE -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/Makefile -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/README.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/URL -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/VERSION: -------------------------------------------------------------------------------- 1 | v0.6.4 2 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/ZSH_VERSIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/ZSH_VERSIONS -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/install_test_zsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/install_test_zsh.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/spec/async_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/spec/async_spec.rb -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/spec/kill_ring_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/spec/kill_ring_spec.rb -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/spec/line_init_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/spec/line_init_spec.rb -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/spec/multi_line_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/spec/multi_line_spec.rb -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/spec/spec_helper.rb -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/src/async.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/src/async.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/src/bind.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/src/bind.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/src/config.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/src/config.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/src/fetch.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/src/fetch.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/src/highlight.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/src/highlight.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/src/start.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/src/start.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/src/util.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/src/util.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/src/widgets.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/src/widgets.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh: -------------------------------------------------------------------------------- 1 | source ${0:A:h}/zsh-autosuggestions.zsh 2 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-completion-generator/.gitignore: -------------------------------------------------------------------------------- 1 | completions 2 | *.py[cod] 3 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-completion-generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-completion-generator/LICENSE -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-completion-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-completion-generator/README.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-completion-generator/help2comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-completion-generator/help2comp.py -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-defer/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-defer/.gitattributes -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-defer/.gitignore: -------------------------------------------------------------------------------- 1 | *.zwc 2 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-defer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-defer/LICENSE -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-defer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-defer/README.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-defer/docs/zsh-startup-with-defer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-defer/docs/zsh-startup-with-defer.gif -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-defer/zsh-defer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-defer/zsh-defer -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-defer/zsh-defer.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-defer/zsh-defer.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-expand-all/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-expand-all/COPYRIGHT -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-expand-all/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-expand-all/LICENSE-APACHE -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-expand-all/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-expand-all/LICENSE-MIT -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-expand-all/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-expand-all/README.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-expand-all/zsh-expand-all.plugin.zsh: -------------------------------------------------------------------------------- 1 | 0=${(%):-%N} 2 | source ${0:A:h}/zsh-expand-all.zsh 3 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-expand-all/zsh-expand-all.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-expand-all/zsh-expand-all.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/.editorconfig -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/.gitattributes: -------------------------------------------------------------------------------- 1 | .revision-hash export-subst 2 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/.gitignore: -------------------------------------------------------------------------------- 1 | *.zwc* 2 | .pc/ 3 | docs/all.md 4 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/.revision-hash: -------------------------------------------------------------------------------- 1 | 5792e7cca17247cda2bc4ad2fc660fbf9b4a9ba6 2 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/.version: -------------------------------------------------------------------------------- 1 | 0.8.0-alpha2-dev 2 | -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/COPYING.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/HACKING.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/INSTALL.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/Makefile -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/README.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/changelog.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/brackets/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/brackets.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/cursor/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/cursor.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/line/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/line.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/main/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/main.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/pattern/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/pattern.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/regexp/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/regexp.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/root/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/root.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after1.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after2.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after3.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before1.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before2.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before3.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/preview.png -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/release.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/tests/README.md -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/tests/generate.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/tests/generate.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/plugins/zsh-syntax-highlighting/tests/tap-filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/plugins/zsh-syntax-highlighting/tests/tap-filter -------------------------------------------------------------------------------- /oh-my-zsh/custom/scripts/fzf-fasd.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/scripts/fzf-fasd.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/scripts/fzf-google-chrome.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/scripts/fzf-google-chrome.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/scripts/fzf-tab-config.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/scripts/fzf-tab-config.zsh -------------------------------------------------------------------------------- /oh-my-zsh/custom/scripts/riggrep-fzf-vim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/scripts/riggrep-fzf-vim.sh -------------------------------------------------------------------------------- /oh-my-zsh/custom/themes/mcpp.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/oh-my-zsh/custom/themes/mcpp.zsh-theme -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/package.json -------------------------------------------------------------------------------- /rcrc: -------------------------------------------------------------------------------- 1 | TAGS="yabai" 2 | EXCLUDES="README.md package.json node_modules" 3 | -------------------------------------------------------------------------------- /tag-bin/local/bin/ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-bin/local/bin/ansi -------------------------------------------------------------------------------- /tag-bin/local/bin/display_text_in_text_editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-bin/local/bin/display_text_in_text_editor -------------------------------------------------------------------------------- /tag-bin/local/bin/keep-zerotier-online.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-bin/local/bin/keep-zerotier-online.sh -------------------------------------------------------------------------------- /tag-bin/local/bin/nowplaying-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-bin/local/bin/nowplaying-cli -------------------------------------------------------------------------------- /tag-bin/local/bin/pinyin-comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-bin/local/bin/pinyin-comp -------------------------------------------------------------------------------- /tag-claude/claude/agents/code-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-claude/claude/agents/code-review.md -------------------------------------------------------------------------------- /tag-claude/claude/commands/project/code-explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-claude/claude/commands/project/code-explain.md -------------------------------------------------------------------------------- /tag-claude/claude/commands/project/code-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-claude/claude/commands/project/code-review.md -------------------------------------------------------------------------------- /tag-claude/claude/commands/project/gen-prd-tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-claude/claude/commands/project/gen-prd-tech.md -------------------------------------------------------------------------------- /tag-claude/claude/commands/project/test-and-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-claude/claude/commands/project/test-and-fix.md -------------------------------------------------------------------------------- /tag-claude/claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-claude/claude/settings.json -------------------------------------------------------------------------------- /tag-claude/claude/statusline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-claude/claude/statusline.sh -------------------------------------------------------------------------------- /tag-karabiner/config/karabiner/assets/complex_modifications/v75.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-karabiner/config/karabiner/assets/complex_modifications/v75.json -------------------------------------------------------------------------------- /tag-karabiner/config/karabiner/karabiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-karabiner/config/karabiner/karabiner.json -------------------------------------------------------------------------------- /tag-mpv/config/mpv/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/input.conf -------------------------------------------------------------------------------- /tag-mpv/config/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/mpv.conf -------------------------------------------------------------------------------- /tag-mpv/config/mpv/script-settings/Blackbox.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/script-settings/Blackbox.conf.example -------------------------------------------------------------------------------- /tag-mpv/config/mpv/script-settings/Colorbox.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/script-settings/Colorbox.conf.example -------------------------------------------------------------------------------- /tag-mpv/config/mpv/script-settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/script-settings/README.md -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/Blackbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/Blackbox.js -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/Colorbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/Colorbox.js -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/auto-keep-gui-open.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/auto-keep-gui-open.lua -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/autoload.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/autoload.lua -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/cycle-video-rotate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/cycle-video-rotate.lua -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/modules.js/AssFormat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/modules.js/AssFormat.js -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/modules.js/MicroUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/modules.js/MicroUtils.js -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/modules.js/Options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/modules.js/Options.js -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/modules.js/PathIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/modules.js/PathIndex.js -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/modules.js/PathTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/modules.js/PathTools.js -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/modules.js/PlaylistManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/modules.js/PlaylistManager.js -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/modules.js/PseudoRandom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/modules.js/PseudoRandom.js -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/modules.js/RandomCycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/modules.js/RandomCycle.js -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/modules.js/SelectionMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/modules.js/SelectionMenu.js -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/modules.js/Stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/modules.js/Stack.js -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/multi-command-if.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/multi-command-if.lua -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/quick-scale.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/quick-scale.lua -------------------------------------------------------------------------------- /tag-mpv/config/mpv/scripts/recent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-mpv/config/mpv/scripts/recent.lua -------------------------------------------------------------------------------- /tag-yabai/config/record_window_id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/record_window_id.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/auto_close_space_when_space_empty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/auto_close_space_when_space_empty.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/change-random-wallpaper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/change-random-wallpaper.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/create_new_space.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/create_new_space.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/destroy_space.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/destroy_space.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/docked-cursor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/docked-cursor.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/get_current_shurufa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/get_current_shurufa -------------------------------------------------------------------------------- /tag-yabai/config/yabai/get_current_shurufa_for_spacebar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/get_current_shurufa_for_spacebar.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/initialization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/initialization.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/recent-window-helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/recent-window-helper.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/scale-window.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/scale-window.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/send_to_next_display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/send_to_next_display.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/spacebar-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/spacebar-lib.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/spacebar_left_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/spacebar_left_command.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/spacebar_right_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/spacebar_right_command.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/switch_window_opacity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/switch_window_opacity.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/toggle-display-center-floating-tiling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/toggle-display-center-floating-tiling.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/toggle-window-bsp-stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/toggle-window-bsp-stack.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/toggle-window-floating-tiling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/toggle-window-floating-tiling.sh -------------------------------------------------------------------------------- /tag-yabai/config/yabai/toggle-window-sticking-tiling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/config/yabai/toggle-window-sticking-tiling.sh -------------------------------------------------------------------------------- /tag-yabai/limelightrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/limelightrc -------------------------------------------------------------------------------- /tag-yabai/skhdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/skhdrc -------------------------------------------------------------------------------- /tag-yabai/spacebarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/spacebarrc -------------------------------------------------------------------------------- /tag-yabai/yabairc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tag-yabai/yabairc -------------------------------------------------------------------------------- /tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux.conf -------------------------------------------------------------------------------- /tmux.conf.local: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmux/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/.gitattributes -------------------------------------------------------------------------------- /tmux/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/.tmux.conf -------------------------------------------------------------------------------- /tmux/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/LICENSE.MIT -------------------------------------------------------------------------------- /tmux/LICENSE.WTFPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/LICENSE.WTFPLv2 -------------------------------------------------------------------------------- /tmux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/README.md -------------------------------------------------------------------------------- /tmux/plugins/extrakto/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/extrakto/.editorconfig -------------------------------------------------------------------------------- /tmux/plugins/extrakto/.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/extrakto/.github/workflows/check.yml -------------------------------------------------------------------------------- /tmux/plugins/extrakto/HELP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/extrakto/HELP.md -------------------------------------------------------------------------------- /tmux/plugins/extrakto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/extrakto/LICENSE -------------------------------------------------------------------------------- /tmux/plugins/extrakto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/extrakto/README.md -------------------------------------------------------------------------------- /tmux/plugins/extrakto/extrakto.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/extrakto/extrakto.conf -------------------------------------------------------------------------------- /tmux/plugins/extrakto/extrakto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/extrakto/extrakto.py -------------------------------------------------------------------------------- /tmux/plugins/extrakto/extrakto.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/extrakto/extrakto.tmux -------------------------------------------------------------------------------- /tmux/plugins/extrakto/scripts/extrakto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/extrakto/scripts/extrakto.sh -------------------------------------------------------------------------------- /tmux/plugins/extrakto/scripts/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/extrakto/scripts/helpers.sh -------------------------------------------------------------------------------- /tmux/plugins/extrakto/scripts/open.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/extrakto/scripts/open.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/.gitattributes -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/CHANGELOG.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/CONTRIBUTING.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/LICENSE.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/README.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/continuum.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/continuum.tmux -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/docs/automatic_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/docs/automatic_start.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/docs/continuum_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/docs/continuum_status.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/docs/faq.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/docs/multiple_tmux_servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/docs/multiple_tmux_servers.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/docs/systemd_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/docs/systemd_details.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/scripts/check_tmux_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/scripts/check_tmux_version.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/scripts/continuum_restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/scripts/continuum_restore.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/scripts/continuum_save.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/scripts/continuum_save.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/scripts/continuum_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/scripts/continuum_status.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/scripts/handle_tmux_automatic_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/scripts/handle_tmux_automatic_start.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/scripts/handle_tmux_automatic_start/README.md: -------------------------------------------------------------------------------- 1 | docs/automatic_start.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/scripts/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/scripts/helpers.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/scripts/shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/scripts/shared.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-continuum/scripts/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-continuum/scripts/variables.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/.travis.yml -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/Gemfile -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/Gemfile.lock -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/LICENSE -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/README.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/THANKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/THANKS.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/assets/tmux-jump-demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/assets/tmux-jump-demo.yml -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/assets/tmux-jump-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/assets/tmux-jump-logo.png -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/assets/tmux-jump-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/assets/tmux-jump-logo.svg -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/scripts/tmux-jump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/scripts/tmux-jump.rb -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/scripts/tmux-jump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/scripts/tmux-jump.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/scripts/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/scripts/utils.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/spec/tmux_jump_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/spec/tmux_jump_spec.rb -------------------------------------------------------------------------------- /tmux/plugins/tmux-jump/tmux-jump.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-jump/tmux-jump.tmux -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/.auto-changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/.auto-changelog -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/.bumpversion.cfg -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/.gitignore -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/CHANGELOG.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/CONTRIBUTING.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/LICENSE -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/README.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/resources/tmux-notify-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/resources/tmux-notify-icon.svg -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/resources/tmux-notify-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/resources/tmux-notify-logo.svg -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/scripts/cancel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/scripts/cancel.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/scripts/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/scripts/helpers.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/scripts/notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/scripts/notify.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/scripts/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/scripts/variables.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-notify/tnotify.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-notify/tnotify.tmux -------------------------------------------------------------------------------- /tmux/plugins/tmux-open/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-open/.gitattributes -------------------------------------------------------------------------------- /tmux/plugins/tmux-open/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-open/CHANGELOG.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-open/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-open/LICENSE.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-open/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-open/README.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-open/open.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-open/open.tmux -------------------------------------------------------------------------------- /tmux/plugins/tmux-open/scripts/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-open/scripts/helpers.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-open/scripts/tmux_open_error_message.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-open/scripts/tmux_open_error_message.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-open/video/screencast_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-open/video/screencast_img.png -------------------------------------------------------------------------------- /tmux/plugins/tmux-open/video/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-open/video/script.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-power/LICENSE: -------------------------------------------------------------------------------- 1 | https://wfxr.mit-license.org/2017 2 | -------------------------------------------------------------------------------- /tmux/plugins/tmux-power/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-power/README.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-power/tmux-power.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-power/tmux-power.tmux -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/.gitattributes -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/.gitmodules -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/.travis.yml -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/CHANGELOG.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/CONTRIBUTING.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/LICENSE.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/README.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/docs/custom_key_bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/docs/custom_key_bindings.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/docs/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/docs/hooks.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/docs/migrating_from_tmuxinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/docs/migrating_from_tmuxinator.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/docs/restoring_pane_contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/docs/restoring_pane_contents.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/docs/restoring_programs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/docs/restoring_programs.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/docs/restoring_shell_history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/docs/restoring_shell_history.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/docs/save_dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/docs/save_dir.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/lib/tmux-test/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/lib/tmux-test/.travis.yml -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/lib/tmux-test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/lib/tmux-test/CHANGELOG.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/lib/tmux-test/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/lib/tmux-test/LICENSE.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/lib/tmux-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/lib/tmux-test/README.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/lib/tmux-test/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/lib/tmux-test/Vagrantfile -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/lib/tmux-test/run_framework_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/lib/tmux-test/run_framework_tests -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/lib/tmux-test/run_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/lib/tmux-test/run_tests -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/lib/tmux-test/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/lib/tmux-test/setup -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/lib/tmux-test/tests/helpers/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/lib/tmux-test/tests/helpers/helpers.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/lib/tmux-test/tests/test_basic_script_execution.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/resurrect.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/resurrect.tmux -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/run_tests: -------------------------------------------------------------------------------- 1 | lib/tmux-test/run_tests -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/save_command_strategies/gdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/save_command_strategies/gdb.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/save_command_strategies/linux_procfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/save_command_strategies/linux_procfs.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/save_command_strategies/pgrep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/save_command_strategies/pgrep.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/save_command_strategies/ps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/save_command_strategies/ps.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/scripts/check_tmux_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/scripts/check_tmux_version.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/scripts/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/scripts/helpers.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/scripts/process_restore_helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/scripts/process_restore_helpers.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/scripts/restore.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/scripts/restore.exp -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/scripts/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/scripts/restore.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/scripts/save.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/scripts/save.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/scripts/spinner_helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/scripts/spinner_helpers.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/scripts/tmux_spinner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/scripts/tmux_spinner.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/scripts/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/scripts/variables.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/strategies/irb_default_strategy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/strategies/irb_default_strategy.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/strategies/nvim_session.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/strategies/nvim_session.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/strategies/vim_session.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/strategies/vim_session.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/tests/fixtures/restore_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/tests/fixtures/restore_file.txt -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/tests/fixtures/save_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/tests/fixtures/save_file.txt -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/tests/helpers/expect_helpers.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/tests/helpers/expect_helpers.exp -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/tests/helpers/helpers.sh: -------------------------------------------------------------------------------- 1 | ../../lib/tmux-test/tests/helpers/helpers.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/tests/helpers/resurrect_helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/tests/helpers/resurrect_helpers.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/tests/run_tests_in_isolation: -------------------------------------------------------------------------------- 1 | ../lib/tmux-test/tests/run_tests_in_isolation -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/tests/test_resurrect_restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/tests/test_resurrect_restore.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/tests/test_resurrect_save.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/tests/test_resurrect_save.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/video/issue_vid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/video/issue_vid.png -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/video/screencast_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/video/screencast_img.png -------------------------------------------------------------------------------- /tmux/plugins/tmux-resurrect/video/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-resurrect/video/script.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-sensible/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-sensible/.gitattributes -------------------------------------------------------------------------------- /tmux/plugins/tmux-sensible/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-sensible/CHANGELOG.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-sensible/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-sensible/LICENSE.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-sensible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-sensible/README.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-sensible/sensible.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-sensible/sensible.tmux -------------------------------------------------------------------------------- /tmux/plugins/tmux-urlview/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-urlview/LICENSE.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-urlview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-urlview/README.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-urlview/urlview.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-urlview/urlview.tmux -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/.editorconfig -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/.gitattributes -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/.travis.yml -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/CHANGELOG.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/LICENSE.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/README.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/Vagrantfile -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/_config.yml -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/citest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/citest -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/scripts/copy_line.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/scripts/copy_line.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/scripts/copy_pane_pwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/scripts/copy_pane_pwd.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/scripts/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/scripts/helpers.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/vagrant_provisioning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/vagrant_provisioning.sh -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/video/README.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/video/screencast_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/video/screencast_img.png -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/video/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/video/script.md -------------------------------------------------------------------------------- /tmux/plugins/tmux-yank/yank.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tmux-yank/yank.tmux -------------------------------------------------------------------------------- /tmux/plugins/tpm/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/.gitattributes -------------------------------------------------------------------------------- /tmux/plugins/tpm/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/.gitmodules -------------------------------------------------------------------------------- /tmux/plugins/tpm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/.travis.yml -------------------------------------------------------------------------------- /tmux/plugins/tpm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/CHANGELOG.md -------------------------------------------------------------------------------- /tmux/plugins/tpm/HOW_TO_PLUGIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/HOW_TO_PLUGIN.md -------------------------------------------------------------------------------- /tmux/plugins/tpm/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/LICENSE.md -------------------------------------------------------------------------------- /tmux/plugins/tpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/README.md -------------------------------------------------------------------------------- /tmux/plugins/tpm/bin/clean_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/bin/clean_plugins -------------------------------------------------------------------------------- /tmux/plugins/tpm/bin/install_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/bin/install_plugins -------------------------------------------------------------------------------- /tmux/plugins/tpm/bin/update_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/bin/update_plugins -------------------------------------------------------------------------------- /tmux/plugins/tpm/bindings/clean_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/bindings/clean_plugins -------------------------------------------------------------------------------- /tmux/plugins/tpm/bindings/install_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/bindings/install_plugins -------------------------------------------------------------------------------- /tmux/plugins/tpm/bindings/update_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/bindings/update_plugins -------------------------------------------------------------------------------- /tmux/plugins/tpm/docs/automatic_tpm_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/docs/automatic_tpm_installation.md -------------------------------------------------------------------------------- /tmux/plugins/tpm/docs/changing_plugins_install_dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/docs/changing_plugins_install_dir.md -------------------------------------------------------------------------------- /tmux/plugins/tpm/docs/how_to_create_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/docs/how_to_create_plugin.md -------------------------------------------------------------------------------- /tmux/plugins/tpm/docs/managing_plugins_via_cmd_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/docs/managing_plugins_via_cmd_line.md -------------------------------------------------------------------------------- /tmux/plugins/tpm/docs/tpm_not_working.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/docs/tpm_not_working.md -------------------------------------------------------------------------------- /tmux/plugins/tpm/scripts/check_tmux_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/scripts/check_tmux_version.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/scripts/clean_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/scripts/clean_plugins.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/scripts/helpers/plugin_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/scripts/helpers/plugin_functions.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/scripts/helpers/shell_echo_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/scripts/helpers/shell_echo_functions.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/scripts/helpers/tmux_echo_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/scripts/helpers/tmux_echo_functions.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/scripts/helpers/tmux_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/scripts/helpers/tmux_utils.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/scripts/helpers/utility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/scripts/helpers/utility.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/scripts/install_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/scripts/install_plugins.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/scripts/source_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/scripts/source_plugins.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/scripts/update_plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/scripts/update_plugin.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/scripts/update_plugin_prompt_handler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/scripts/update_plugin_prompt_handler.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/scripts/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/scripts/variables.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/tests/expect_failed_plugin_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/tests/expect_failed_plugin_download -------------------------------------------------------------------------------- /tmux/plugins/tpm/tests/expect_successful_clean_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/tests/expect_successful_clean_plugins -------------------------------------------------------------------------------- /tmux/plugins/tpm/tests/expect_successful_multiple_plugins_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/tests/expect_successful_multiple_plugins_download -------------------------------------------------------------------------------- /tmux/plugins/tpm/tests/expect_successful_plugin_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/tests/expect_successful_plugin_download -------------------------------------------------------------------------------- /tmux/plugins/tpm/tests/expect_successful_update_of_a_single_plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/tests/expect_successful_update_of_a_single_plugin -------------------------------------------------------------------------------- /tmux/plugins/tpm/tests/expect_successful_update_of_all_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/tests/expect_successful_update_of_all_plugins -------------------------------------------------------------------------------- /tmux/plugins/tpm/tests/helpers/tpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/tests/helpers/tpm.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/tests/test_plugin_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/tests/test_plugin_clean.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/tests/test_plugin_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/tests/test_plugin_installation.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/tests/test_plugin_installation_legacy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/tests/test_plugin_installation_legacy.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/tests/test_plugin_sourcing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/tests/test_plugin_sourcing.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/tests/test_plugin_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/tests/test_plugin_update.sh -------------------------------------------------------------------------------- /tmux/plugins/tpm/tpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/tmux/plugins/tpm/tpm -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/vimrc -------------------------------------------------------------------------------- /zim/custom/after/plugin/agkozak-zsh-prompt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/after/plugin/agkozak-zsh-prompt.zsh -------------------------------------------------------------------------------- /zim/custom/after/plugin/alias-tip.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/after/plugin/alias-tip.zsh -------------------------------------------------------------------------------- /zim/custom/after/plugin/zsh-autosuggestions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/after/plugin/zsh-autosuggestions.zsh -------------------------------------------------------------------------------- /zim/custom/after/plugin/zsh-syntax-highlight.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/after/plugin/zsh-syntax-highlight.zsh -------------------------------------------------------------------------------- /zim/custom/after/plugin/zsh-vi-mode.zsh: -------------------------------------------------------------------------------- 1 | # 修正C-r为atuin 2 | zvm_after_init_commands+=("bindkey '^r' _atuin_search_widget") 3 | # 调整高亮背景色 4 | ZVM_VI_HIGHLIGHT_BACKGROUND=#81AFD5 5 | -------------------------------------------------------------------------------- /zim/custom/modules/mcpp/mcpp.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/modules/mcpp/mcpp.zsh-theme -------------------------------------------------------------------------------- /zim/custom/modules/mcpp/mcpp.zsh-theme.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/modules/mcpp/mcpp.zsh-theme.zwc -------------------------------------------------------------------------------- /zim/custom/plugins/zsh-completion-generator/.gitignore: -------------------------------------------------------------------------------- 1 | completions 2 | *.py[cod] 3 | -------------------------------------------------------------------------------- /zim/custom/plugins/zsh-completion-generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/plugins/zsh-completion-generator/LICENSE -------------------------------------------------------------------------------- /zim/custom/plugins/zsh-completion-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/plugins/zsh-completion-generator/README.md -------------------------------------------------------------------------------- /zim/custom/plugins/zsh-completion-generator/help2comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/plugins/zsh-completion-generator/help2comp.py -------------------------------------------------------------------------------- /zim/custom/scripts/fzf-fasd.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/scripts/fzf-fasd.zsh -------------------------------------------------------------------------------- /zim/custom/scripts/fzf-fasd.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/scripts/fzf-fasd.zsh.zwc -------------------------------------------------------------------------------- /zim/custom/scripts/fzf-google-chrome.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/scripts/fzf-google-chrome.zsh -------------------------------------------------------------------------------- /zim/custom/scripts/fzf-google-chrome.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/scripts/fzf-google-chrome.zsh.zwc -------------------------------------------------------------------------------- /zim/custom/scripts/fzf-tab-config.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/scripts/fzf-tab-config.zsh -------------------------------------------------------------------------------- /zim/custom/scripts/fzf-tab-config.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/scripts/fzf-tab-config.zsh.zwc -------------------------------------------------------------------------------- /zim/custom/scripts/riggrep-fzf-vim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zim/custom/scripts/riggrep-fzf-vim.sh -------------------------------------------------------------------------------- /zimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zimrc -------------------------------------------------------------------------------- /zsh_enhance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zsh_enhance -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zshrc -------------------------------------------------------------------------------- /zshrcbak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mopip77/dotfile/HEAD/zshrcbak --------------------------------------------------------------------------------