├── .gitattributes ├── .gitignore ├── README.md ├── bash_profile ├── bashrc ├── bin.local └── .gitkeep ├── bin ├── ,session-close ├── ,session-close.bat ├── ,session-open ├── blog-img-optimizer.sh ├── ec ├── ec-wait ├── ec.bat ├── elevate.bat ├── git-save-storage ├── git-truncate-history ├── is-elevated.bat ├── open-with-emacs-from-windows-explorer.cmd ├── plantuml.jar ├── remove-trailing-whitespace └── run-chrome.bat ├── doom.d ├── autoload │ ├── org-roam.el │ └── windows.el ├── config.org ├── doctor.el ├── init.el ├── lisp │ ├── goodbye-picasa.el │ ├── legacy-gitlab.el │ ├── my-build-link-section.el │ ├── my-gitlab.el │ ├── my-jira.el │ ├── my-org-bulk-export-jekyll.el │ ├── my-org-cliplink-confluence.el │ ├── my-org-cliplink.el │ ├── my-ox-confluence.el │ ├── my-ox-taskjuggler.el │ ├── my-source-mine.el │ ├── my-swarm.el │ ├── my-web-archive.el │ ├── ob-cs.el │ └── taskjuggler-setting.el └── snippets │ ├── elixir-mode │ └── moduledoc │ └── org-mode │ ├── org-ai │ ├── org-code-reading │ ├── org-header │ ├── org-roam-blog │ ├── org-source │ ├── org-source-cpp │ ├── org-source-cpp-runnable │ ├── org-source-elisp │ ├── org-source-elixir │ ├── org-source-mermaid │ ├── org-source-translate │ └── org-source-translate-to-en ├── elixir └── .iex.exs ├── emacs.d ├── init.el ├── lisp │ ├── goodbye-picasa.el │ ├── legacy-gitlab.el │ ├── my-gitlab.el │ ├── my-ox-confluence.el │ ├── my-ox-taskjuggler.el │ └── taskjuggler-setting.el └── snippets │ ├── elixir-mode │ └── moduledoc │ └── org-mode │ ├── org-header │ ├── org-roam-blog │ ├── org-roam-book │ ├── org-roam-daily │ ├── org-roam-retrospective-weekly │ └── org-source ├── git ├── commit_template_issue_branch ├── git-completion.bash ├── git-prompt.sh ├── gitconfig ├── gitignore_global ├── prepare-commit-msg-issue-branch └── prepare-commit-msg.jira ├── key-remap ├── autohotkey.ahk ├── autohotkey_v1.ahk └── karabiner-elements.json ├── script ├── Brewfile ├── add-karabiner-emacs-rules ├── bootstrap ├── bootstrap.bat ├── setup.bat └── util ├── tampermonkey └── youtube_focus_mode.js ├── tool-versions ├── vim ├── ideavimrc ├── vimrc └── xvimrc └── zshrc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bash_profile -------------------------------------------------------------------------------- /bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bashrc -------------------------------------------------------------------------------- /bin.local/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/,session-close: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/,session-close -------------------------------------------------------------------------------- /bin/,session-close.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/,session-close.bat -------------------------------------------------------------------------------- /bin/,session-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/,session-open -------------------------------------------------------------------------------- /bin/blog-img-optimizer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/blog-img-optimizer.sh -------------------------------------------------------------------------------- /bin/ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/ec -------------------------------------------------------------------------------- /bin/ec-wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/ec-wait -------------------------------------------------------------------------------- /bin/ec.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/ec.bat -------------------------------------------------------------------------------- /bin/elevate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/elevate.bat -------------------------------------------------------------------------------- /bin/git-save-storage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/git-save-storage -------------------------------------------------------------------------------- /bin/git-truncate-history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/git-truncate-history -------------------------------------------------------------------------------- /bin/is-elevated.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | fsutil dirty query %systemdrive% >nul 3 | -------------------------------------------------------------------------------- /bin/open-with-emacs-from-windows-explorer.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/open-with-emacs-from-windows-explorer.cmd -------------------------------------------------------------------------------- /bin/plantuml.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/plantuml.jar -------------------------------------------------------------------------------- /bin/remove-trailing-whitespace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/remove-trailing-whitespace -------------------------------------------------------------------------------- /bin/run-chrome.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/bin/run-chrome.bat -------------------------------------------------------------------------------- /doom.d/autoload/org-roam.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/autoload/org-roam.el -------------------------------------------------------------------------------- /doom.d/autoload/windows.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/autoload/windows.el -------------------------------------------------------------------------------- /doom.d/config.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/config.org -------------------------------------------------------------------------------- /doom.d/doctor.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/doctor.el -------------------------------------------------------------------------------- /doom.d/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/init.el -------------------------------------------------------------------------------- /doom.d/lisp/goodbye-picasa.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/goodbye-picasa.el -------------------------------------------------------------------------------- /doom.d/lisp/legacy-gitlab.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/legacy-gitlab.el -------------------------------------------------------------------------------- /doom.d/lisp/my-build-link-section.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/my-build-link-section.el -------------------------------------------------------------------------------- /doom.d/lisp/my-gitlab.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/my-gitlab.el -------------------------------------------------------------------------------- /doom.d/lisp/my-jira.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/my-jira.el -------------------------------------------------------------------------------- /doom.d/lisp/my-org-bulk-export-jekyll.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/my-org-bulk-export-jekyll.el -------------------------------------------------------------------------------- /doom.d/lisp/my-org-cliplink-confluence.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/my-org-cliplink-confluence.el -------------------------------------------------------------------------------- /doom.d/lisp/my-org-cliplink.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/my-org-cliplink.el -------------------------------------------------------------------------------- /doom.d/lisp/my-ox-confluence.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/my-ox-confluence.el -------------------------------------------------------------------------------- /doom.d/lisp/my-ox-taskjuggler.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/my-ox-taskjuggler.el -------------------------------------------------------------------------------- /doom.d/lisp/my-source-mine.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/my-source-mine.el -------------------------------------------------------------------------------- /doom.d/lisp/my-swarm.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/my-swarm.el -------------------------------------------------------------------------------- /doom.d/lisp/my-web-archive.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/my-web-archive.el -------------------------------------------------------------------------------- /doom.d/lisp/ob-cs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/ob-cs.el -------------------------------------------------------------------------------- /doom.d/lisp/taskjuggler-setting.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/lisp/taskjuggler-setting.el -------------------------------------------------------------------------------- /doom.d/snippets/elixir-mode/moduledoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/snippets/elixir-mode/moduledoc -------------------------------------------------------------------------------- /doom.d/snippets/org-mode/org-ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/snippets/org-mode/org-ai -------------------------------------------------------------------------------- /doom.d/snippets/org-mode/org-code-reading: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/snippets/org-mode/org-code-reading -------------------------------------------------------------------------------- /doom.d/snippets/org-mode/org-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/snippets/org-mode/org-header -------------------------------------------------------------------------------- /doom.d/snippets/org-mode/org-roam-blog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/snippets/org-mode/org-roam-blog -------------------------------------------------------------------------------- /doom.d/snippets/org-mode/org-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/snippets/org-mode/org-source -------------------------------------------------------------------------------- /doom.d/snippets/org-mode/org-source-cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/snippets/org-mode/org-source-cpp -------------------------------------------------------------------------------- /doom.d/snippets/org-mode/org-source-cpp-runnable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/snippets/org-mode/org-source-cpp-runnable -------------------------------------------------------------------------------- /doom.d/snippets/org-mode/org-source-elisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/snippets/org-mode/org-source-elisp -------------------------------------------------------------------------------- /doom.d/snippets/org-mode/org-source-elixir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/snippets/org-mode/org-source-elixir -------------------------------------------------------------------------------- /doom.d/snippets/org-mode/org-source-mermaid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/snippets/org-mode/org-source-mermaid -------------------------------------------------------------------------------- /doom.d/snippets/org-mode/org-source-translate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/snippets/org-mode/org-source-translate -------------------------------------------------------------------------------- /doom.d/snippets/org-mode/org-source-translate-to-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/doom.d/snippets/org-mode/org-source-translate-to-en -------------------------------------------------------------------------------- /elixir/.iex.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/elixir/.iex.exs -------------------------------------------------------------------------------- /emacs.d/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/init.el -------------------------------------------------------------------------------- /emacs.d/lisp/goodbye-picasa.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/lisp/goodbye-picasa.el -------------------------------------------------------------------------------- /emacs.d/lisp/legacy-gitlab.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/lisp/legacy-gitlab.el -------------------------------------------------------------------------------- /emacs.d/lisp/my-gitlab.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/lisp/my-gitlab.el -------------------------------------------------------------------------------- /emacs.d/lisp/my-ox-confluence.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/lisp/my-ox-confluence.el -------------------------------------------------------------------------------- /emacs.d/lisp/my-ox-taskjuggler.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/lisp/my-ox-taskjuggler.el -------------------------------------------------------------------------------- /emacs.d/lisp/taskjuggler-setting.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/lisp/taskjuggler-setting.el -------------------------------------------------------------------------------- /emacs.d/snippets/elixir-mode/moduledoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/snippets/elixir-mode/moduledoc -------------------------------------------------------------------------------- /emacs.d/snippets/org-mode/org-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/snippets/org-mode/org-header -------------------------------------------------------------------------------- /emacs.d/snippets/org-mode/org-roam-blog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/snippets/org-mode/org-roam-blog -------------------------------------------------------------------------------- /emacs.d/snippets/org-mode/org-roam-book: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/snippets/org-mode/org-roam-book -------------------------------------------------------------------------------- /emacs.d/snippets/org-mode/org-roam-daily: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/snippets/org-mode/org-roam-daily -------------------------------------------------------------------------------- /emacs.d/snippets/org-mode/org-roam-retrospective-weekly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/snippets/org-mode/org-roam-retrospective-weekly -------------------------------------------------------------------------------- /emacs.d/snippets/org-mode/org-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/emacs.d/snippets/org-mode/org-source -------------------------------------------------------------------------------- /git/commit_template_issue_branch: -------------------------------------------------------------------------------- 1 | ${issue} 2 | -------------------------------------------------------------------------------- /git/git-completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/git/git-completion.bash -------------------------------------------------------------------------------- /git/git-prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/git/git-prompt.sh -------------------------------------------------------------------------------- /git/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/git/gitconfig -------------------------------------------------------------------------------- /git/gitignore_global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/git/gitignore_global -------------------------------------------------------------------------------- /git/prepare-commit-msg-issue-branch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/git/prepare-commit-msg-issue-branch -------------------------------------------------------------------------------- /git/prepare-commit-msg.jira: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/git/prepare-commit-msg.jira -------------------------------------------------------------------------------- /key-remap/autohotkey.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/key-remap/autohotkey.ahk -------------------------------------------------------------------------------- /key-remap/autohotkey_v1.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/key-remap/autohotkey_v1.ahk -------------------------------------------------------------------------------- /key-remap/karabiner-elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/key-remap/karabiner-elements.json -------------------------------------------------------------------------------- /script/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/script/Brewfile -------------------------------------------------------------------------------- /script/add-karabiner-emacs-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/script/add-karabiner-emacs-rules -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/bootstrap.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/script/bootstrap.bat -------------------------------------------------------------------------------- /script/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/script/setup.bat -------------------------------------------------------------------------------- /script/util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/script/util -------------------------------------------------------------------------------- /tampermonkey/youtube_focus_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/tampermonkey/youtube_focus_mode.js -------------------------------------------------------------------------------- /tool-versions: -------------------------------------------------------------------------------- 1 | erlang 25.3.2.15 2 | elixir 1.16.3-otp-25 3 | nodejs 22.17.0 4 | ruby 3.1.4 5 | -------------------------------------------------------------------------------- /vim/ideavimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/vim/ideavimrc -------------------------------------------------------------------------------- /vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/vim/vimrc -------------------------------------------------------------------------------- /vim/xvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/vim/xvimrc -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohyecloudy/dotfiles/HEAD/zshrc --------------------------------------------------------------------------------