diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..65306fc --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,99 @@ +# AGENTS: Neovim Config Migration + +Scope: applies to the entire `~/.config/nvim` directory tree. + +This repository is being migrated to a modern, minimal Neovim setup driven by Lua and lazy.nvim. Follow these rules when making changes. + +## Goals +- Modern Lua-first config; avoid Vimscript unless explicitly requested. +- Keep it minimal, fast, and maintainable. +- Base plugin management on `lazy.nvim` with modular plugin specs. +- Support tab-per-context workflow with Neo-tree per tab, Telescope navigation, LSP, Treesitter, Copilot, and sane UX defaults. + +## Do Not Reintroduce +- Custom Vimscript tabline/statusline, foldtext, UI hacks. +- Legacy autocommands toggling cursorline/column per window. +- CoC or CoC-specific config. +- netrw settings (Neo-tree will be used). +- Providers for ruby/perl/node (disable unless required by a plugin). +- Auto-reload vimrc-on-write templates. +- `cursorcolumn` and old folding logic not related to UFO. + +## Repository Structure (target) +``` +~/.config/nvim/ +├── init.lua -- entrypoint; bootstraps lazy.nvim and loads Lua modules +└── lua/ + ├── settings.lua -- non-plugin options + ├── keymaps.lua -- non-plugin keymaps + ├── autocmds.lua -- non-plugin autocommands + ├── utils.lua -- helpers (only if needed) + └── plugins/ -- one file per plugin or domain + ├── neo-tree.lua + ├── telescope.lua + ├── treesitter.lua + ├── cmp.lua + ├── lsp.lua + ├── copilot.lua + ├── ufo.lua + ├── gitsigns.lua + ├── markdown.lua + └── none-ls.lua +``` + +## Coding Conventions +- Use Lua APIs: `vim.opt`, `vim.api.nvim_create_autocmd`, `vim.keymap.set`. +- No inline Vimscript or `vim.cmd` blocks unless strictly necessary. +- Keep plugin configuration self-contained in its plugin spec file. +- Prefer small, readable modules and minimal configuration over heavy customization. +- Keymaps: use `vim.keymap.set` with `{ silent = true, noremap = true }` defaults unless otherwise required. +- Autocommands: group via `vim.api.nvim_create_augroup` and create specific, narrowly scoped autocmds. +- Avoid global state; return tables from modules and plugin specs. + +## Plugin Management (lazy.nvim) +- Each plugin lives in `lua/plugins/.lua` and returns a spec table. +- Use `opts = {}` for default options and `config = function(_, opts) ... end` for setup. +- Only include plugins listed in the migration guide unless explicitly approved. + +## Required Plugin Categories +- Core: `nvim-lspconfig`, `nvim-cmp`, `cmp-nvim-lsp`, `cmp-buffer`, `cmp-path`, `LuaSnip`. +- Navigation: `neo-tree.nvim`, `telescope.nvim` (+ optional `telescope-fzf-native.nvim`). +- Treesitter: `nvim-treesitter`, `nvim-treesitter-textobjects`, `nvim-ts-autotag`. +- UX/Editing: `Comment.nvim`, `surround.nvim`, `nvim-autopairs`, `indent-blankline.nvim`, `leap.nvim` or `flash.nvim`, `nvim-ufo`, `undotree` (optional). +- Git: `gitsigns.nvim`. +- Markdown: `render-markdown.nvim`. +- Copilot: `copilot.lua`, `copilot-cmp`. +- Formatting: `none-ls.nvim`. + +## Workflow Requirements to Preserve +- Tab-per-context: each tab has its own Neo-tree root. +- Provide keymaps for: Neo-tree floating, Neo-tree sidebar toggle, and file preview. Previews should not pollute buffer list. +- Keep splits inside tabs. +- Use Telescope and LSP for navigation. +- Heavy HTML/PHP/JS/Markdown usage (WordPress plugin dev) — prioritize these languages in LSP/Treesitter. + +## Behaviours to Keep (modernized) +- Abbreviations: `adn→and`, `waht→what`, `tehn→then`, `functin→function`, `positin→position`. +- Templates: auto-populate `.sh` from template. +- Whitespace highlighting (use modern alternatives, e.g., `listchars`, plugins if needed). +- Persistent folds (prefer `nvim-ufo`). +- Spell & text: `spelllang=en_gb`, custom `listchars`, `showbreak`. + +## Migration Notes +- Do not edit legacy Vimscript files except to extract settings to Lua. Keep them intact until migration completes. +- Introduce `init.lua` and bootstrap `lazy.nvim` before adding plugins. +- Disable unnecessary providers early: `vim.g.loaded_ruby_provider = 0`, etc. +- Keep startup fast; avoid unnecessary autoloading or heavy defaults. +- When cleaning, archive existing files into a `legacy/` folder within this config instead of deleting. Maintain a brief index if helpful. + +## Validation +- Ensure Neovim starts without errors and with minimal startup time. +- Verify tab workflow, Neo-tree behaviour, Telescope, LSP basics, and completion. +- Keep plugin count tight; remove anything unused. + +## Process +- Before large changes, update the task plan via the CLI `update_plan` tool. +- Keep the live checklist in `MIGRATION_PLAN.md:1` up to date and in sync with changes. +- At the start of each phase, confirm scope and priorities for that phase. +- Keep PR-sized patches; avoid broad unrelated edits. +- Document non-obvious choices in commit messages or short comments near the code that needs it. diff --git a/MIGRATION_PLAN.md b/MIGRATION_PLAN.md new file mode 100644 index 0000000..39475ab --- /dev/null +++ b/MIGRATION_PLAN.md @@ -0,0 +1,76 @@ +# Neovim Migration Checklist + +Source of truth for the step-by-step rebuild. Keep this concise and up to date. See details in `neovim-migration-guide.md`. + +## Phase 0 — Ground Rules +- [x] Create AGENTS.md with rules + +## Phase 1 — Clean & Archive Legacy Config +- [ ] Confirm scope and priorities for this phase +- [ ] Inventory existing Vimscript, plugin files, and directories +- [ ] Create `legacy/` archive folder within this config +- [ ] Move legacy init files and plugin directories into `legacy/` (do not delete) +- [ ] Optionally add `legacy/README.md` noting what was archived +- [ ] Keep `undodir`, `spell`, `view`, `UltiSnips`, `templates` as-is for now (review later) + +## Phase 2 — Bootstrap +- [ ] Confirm scope and priorities for this phase +- [ ] Scaffold Lua config skeleton (`init.lua`, `lua/settings.lua`, `lua/keymaps.lua`, `lua/autocmds.lua`, `lua/utils.lua`, `lua/plugins/`) +- [ ] Bootstrap `lazy.nvim` plugin manager +- [ ] Disable unused providers (ruby, perl, node) + +## Phase 3 — Core Editing & LSP +- [ ] Confirm scope and priorities for this phase +- [ ] Port non-plugin settings to Lua (options, listchars, showbreak, spelllang=en_gb) +- [ ] Add core completion stack: `nvim-cmp`, `cmp-nvim-lsp`, `cmp-buffer`, `cmp-path`, `LuaSnip` +- [ ] Add `nvim-lspconfig` with minimal defaults (no over-configuration) + +## Phase 4 — Navigation +- [ ] Confirm scope and priorities for this phase +- [ ] Add `neo-tree.nvim` with per-tab roots, sidebar toggle, floating view, and preview keymap (no buffer pollution) +- [ ] Add `telescope.nvim` (+ optional `telescope-fzf-native.nvim`) and basic pickers + +## Phase 5 — Treesitter +- [ ] Confirm scope and priorities for this phase +- [ ] Add `nvim-treesitter` with incremental selection, highlighting +- [ ] Add `nvim-treesitter-textobjects` +- [ ] Add `nvim-ts-autotag` + +## Phase 6 — UX / Editing +- [ ] Confirm scope and priorities for this phase +- [ ] Add `numToStr/Comment.nvim` +- [ ] Add `kylechui/nvim-surround` +- [ ] Add `windwp/nvim-autopairs` +- [ ] Add `lukas-reineke/indent-blankline.nvim` +- [ ] Add `ggandor/leap.nvim` or `folke/flash.nvim` +- [ ] Add `kevinhwang91/nvim-ufo` for folding +- [ ] (Optional) Add `mbbill/undotree` + +## Phase 7 — Git, Markdown, Copilot, Formatting +- [ ] Confirm scope and priorities for this phase +- [ ] Add `lewis6991/gitsigns.nvim` +- [ ] Add `render-markdown.nvim` +- [ ] Add `zbirenbaum/copilot.lua` + `copilot-cmp` +- [ ] Add `nvimtools/none-ls.nvim` with minimal formatters/linters + +## Phase 8 — Migrate Kept Behaviours +- [ ] Confirm scope and priorities for this phase +- [ ] Abbreviations: `adn→and`, `waht→what`, `tehn→then`, `functin→function`, `positin→position` +- [ ] Templates: auto-populate new `.sh` from template +- [ ] Whitespace highlighting (modern approach) +- [ ] Persistent folds (via UFO) + +## Phase 9 — Cleanup & Validation +- [ ] Confirm scope and priorities for this phase +- [ ] Retire legacy Vimscript files (keep for reference until verified) +- [ ] Validate startup performance (no errors, fast launch) +- [ ] Validate tab-per-context workflow with Neo-tree +- [ ] Validate Telescope navigation + LSP jumps +- [ ] Validate HTML/PHP/JS/Markdown tooling + +--- + +Notes: +- Keep plugin specs minimal; configure in their own `lua/plugins/*.lua` files. +- Avoid adding plugins not listed in the guide unless explicitly requested. +- Prefer simple defaults; only add settings that clearly improve workflow. diff --git a/legacy/.vimtmp/%home%ray%.bin%dmenu_power b/legacy/.vimtmp/%home%ray%.bin%dmenu_power new file mode 100644 index 0000000..22b12a6 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.bin%dmenu_power differ diff --git a/legacy/.vimtmp/%home%ray%.bin%dmenu_ssh b/legacy/.vimtmp/%home%ray%.bin%dmenu_ssh new file mode 100644 index 0000000..53d7438 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.bin%dmenu_ssh differ diff --git a/legacy/.vimtmp/%home%ray%.config%barrier%barrier.conf b/legacy/.vimtmp/%home%ray%.config%barrier%barrier.conf new file mode 100644 index 0000000..9a91082 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%barrier%barrier.conf differ diff --git a/legacy/.vimtmp/%home%ray%.config%barrier%run_barrier.sh b/legacy/.vimtmp/%home%ray%.config%barrier%run_barrier.sh new file mode 100644 index 0000000..2d9dbc1 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%barrier%run_barrier.sh differ diff --git a/legacy/.vimtmp/%home%ray%.config%bookmark-menu%bookmark-menu.config b/legacy/.vimtmp/%home%ray%.config%bookmark-menu%bookmark-menu.config new file mode 100644 index 0000000..ad0db34 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%bookmark-menu%bookmark-menu.config differ diff --git a/legacy/.vimtmp/%home%ray%.config%conky%conky-full.conf b/legacy/.vimtmp/%home%ray%.config%conky%conky-full.conf new file mode 100644 index 0000000..ce5a614 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%conky%conky-full.conf differ diff --git a/legacy/.vimtmp/%home%ray%.config%conky%conky-short.conf b/legacy/.vimtmp/%home%ray%.config%conky%conky-short.conf new file mode 100644 index 0000000..3fc70f9 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%conky%conky-short.conf differ diff --git a/legacy/.vimtmp/%home%ray%.config%dmenu%dmenurc b/legacy/.vimtmp/%home%ray%.config%dmenu%dmenurc new file mode 100644 index 0000000..9699d87 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%dmenu%dmenurc differ diff --git a/legacy/.vimtmp/%home%ray%.config%dunst%dunstrc b/legacy/.vimtmp/%home%ray%.config%dunst%dunstrc new file mode 100644 index 0000000..5b3654e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%dunst%dunstrc differ diff --git a/legacy/.vimtmp/%home%ray%.config%feh%keys b/legacy/.vimtmp/%home%ray%.config%feh%keys new file mode 100644 index 0000000..f46c0ff Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%feh%keys differ diff --git a/legacy/.vimtmp/%home%ray%.config%i3-scrot.conf b/legacy/.vimtmp/%home%ray%.config%i3-scrot.conf new file mode 100644 index 0000000..cb03a5e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%i3-scrot.conf differ diff --git a/legacy/.vimtmp/%home%ray%.config%keepmenu%config.ini b/legacy/.vimtmp/%home%ray%.config%keepmenu%config.ini new file mode 100644 index 0000000..872a0ec Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%keepmenu%config.ini differ diff --git a/legacy/.vimtmp/%home%ray%.config%kitty%kitty.conf b/legacy/.vimtmp/%home%ray%.config%kitty%kitty.conf new file mode 100644 index 0000000..924c7a5 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%kitty%kitty.conf differ diff --git a/legacy/.vimtmp/%home%ray%.config%lf%draw_img.sh b/legacy/.vimtmp/%home%ray%.config%lf%draw_img.sh new file mode 100644 index 0000000..52fef91 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%lf%draw_img.sh differ diff --git a/legacy/.vimtmp/%home%ray%.config%lf%lfrc b/legacy/.vimtmp/%home%ray%.config%lf%lfrc new file mode 100644 index 0000000..111a5a6 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%lf%lfrc differ diff --git a/legacy/.vimtmp/%home%ray%.config%lftp%rc b/legacy/.vimtmp/%home%ray%.config%lftp%rc new file mode 100644 index 0000000..4a87301 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%lftp%rc differ diff --git a/legacy/.vimtmp/%home%ray%.config%mpv%input.conf b/legacy/.vimtmp/%home%ray%.config%mpv%input.conf new file mode 100644 index 0000000..4ea2fad Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%mpv%input.conf differ diff --git a/legacy/.vimtmp/%home%ray%.config%mpv%mpv.conf b/legacy/.vimtmp/%home%ray%.config%mpv%mpv.conf new file mode 100644 index 0000000..63c2ffe Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%mpv%mpv.conf differ diff --git a/legacy/.vimtmp/%home%ray%.config%notify-updates%notify-updates.config b/legacy/.vimtmp/%home%ray%.config%notify-updates%notify-updates.config new file mode 100644 index 0000000..8102dfa Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%notify-updates%notify-updates.config differ diff --git a/legacy/.vimtmp/%home%ray%.config%nvim%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%.config%nvim%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..adaeac7 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%nvim%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%.config%nvim%coc-settings.json b/legacy/.vimtmp/%home%ray%.config%nvim%coc-settings.json new file mode 100644 index 0000000..a8aca3c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%nvim%coc-settings.json differ diff --git a/legacy/.vimtmp/%home%ray%.config%nvim%init.plugins.vim b/legacy/.vimtmp/%home%ray%.config%nvim%init.plugins.vim new file mode 100644 index 0000000..78a5d7c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%nvim%init.plugins.vim differ diff --git a/legacy/.vimtmp/%home%ray%.config%nvim%init.statusline.vim b/legacy/.vimtmp/%home%ray%.config%nvim%init.statusline.vim new file mode 100644 index 0000000..c865b92 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%nvim%init.statusline.vim differ diff --git a/legacy/.vimtmp/%home%ray%.config%nvim%init.tabline.vim b/legacy/.vimtmp/%home%ray%.config%nvim%init.tabline.vim new file mode 100644 index 0000000..0680121 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%nvim%init.tabline.vim differ diff --git a/legacy/.vimtmp/%home%ray%.config%nvim%init.vim b/legacy/.vimtmp/%home%ray%.config%nvim%init.vim new file mode 100644 index 0000000..4d99816 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%nvim%init.vim differ diff --git a/legacy/.vimtmp/%home%ray%.config%profile%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%.config%profile%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..1ed7288 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%profile%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%.config%profile%aliases.sh b/legacy/.vimtmp/%home%ray%.config%profile%aliases.sh new file mode 100644 index 0000000..74c9149 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%profile%aliases.sh differ diff --git a/legacy/.vimtmp/%home%ray%.config%profile%profile b/legacy/.vimtmp/%home%ray%.config%profile%profile new file mode 100644 index 0000000..7329758 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%profile%profile differ diff --git a/legacy/.vimtmp/%home%ray%.config%qutebrowser%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%.config%qutebrowser%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..82b4e55 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%qutebrowser%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%.config%qutebrowser%.gitignore b/legacy/.vimtmp/%home%ray%.config%qutebrowser%.gitignore new file mode 100644 index 0000000..a3f679e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%qutebrowser%.gitignore differ diff --git a/legacy/.vimtmp/%home%ray%.config%qutebrowser%autoconfig.yml b/legacy/.vimtmp/%home%ray%.config%qutebrowser%autoconfig.yml new file mode 100644 index 0000000..bc1491d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%qutebrowser%autoconfig.yml differ diff --git a/legacy/.vimtmp/%home%ray%.config%qutebrowser%colors.py b/legacy/.vimtmp/%home%ray%.config%qutebrowser%colors.py new file mode 100644 index 0000000..e2ea5d5 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%qutebrowser%colors.py differ diff --git a/legacy/.vimtmp/%home%ray%.config%qutebrowser%config.py b/legacy/.vimtmp/%home%ray%.config%qutebrowser%config.py new file mode 100644 index 0000000..7931d86 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%qutebrowser%config.py differ diff --git a/legacy/.vimtmp/%home%ray%.config%qutebrowser%quickmarks b/legacy/.vimtmp/%home%ray%.config%qutebrowser%quickmarks new file mode 100644 index 0000000..7fd5bc3 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%qutebrowser%quickmarks differ diff --git a/legacy/.vimtmp/%home%ray%.config%qutebrowser%test b/legacy/.vimtmp/%home%ray%.config%qutebrowser%test new file mode 100644 index 0000000..394a3c6 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%qutebrowser%test differ diff --git a/legacy/.vimtmp/%home%ray%.config%systemd%user%update-notifier.service b/legacy/.vimtmp/%home%ray%.config%systemd%user%update-notifier.service new file mode 100644 index 0000000..1706f2c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%systemd%user%update-notifier.service differ diff --git a/legacy/.vimtmp/%home%ray%.config%systemd%user%update-notifier.timer b/legacy/.vimtmp/%home%ray%.config%systemd%user%update-notifier.timer new file mode 100644 index 0000000..2bd22a8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%systemd%user%update-notifier.timer differ diff --git a/legacy/.vimtmp/%home%ray%.config%tmux%README.md b/legacy/.vimtmp/%home%ray%.config%tmux%README.md new file mode 100644 index 0000000..f3f213c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%tmux%README.md differ diff --git a/legacy/.vimtmp/%home%ray%.config%tmux%tmux.colours-full.conf b/legacy/.vimtmp/%home%ray%.config%tmux%tmux.colours-full.conf new file mode 100644 index 0000000..3eda460 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%tmux%tmux.colours-full.conf differ diff --git a/legacy/.vimtmp/%home%ray%.config%tmux%tmux.colours.conf b/legacy/.vimtmp/%home%ray%.config%tmux%tmux.colours.conf new file mode 100644 index 0000000..efeac0c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%tmux%tmux.colours.conf differ diff --git a/legacy/.vimtmp/%home%ray%.config%tmux%tmux.conf b/legacy/.vimtmp/%home%ray%.config%tmux%tmux.conf new file mode 100644 index 0000000..7c3ad7b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%tmux%tmux.conf differ diff --git a/legacy/.vimtmp/%home%ray%.config%user-dirs.dirs b/legacy/.vimtmp/%home%ray%.config%user-dirs.dirs new file mode 100644 index 0000000..bbb8862 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%user-dirs.dirs differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%.config%vim%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..2e6dab8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%.netrwhist b/legacy/.vimtmp/%home%ray%.config%vim%.netrwhist new file mode 100644 index 0000000..cac476e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%.netrwhist differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%UltiSnips%html.snippets b/legacy/.vimtmp/%home%ray%.config%vim%UltiSnips%html.snippets new file mode 100644 index 0000000..a80ce9a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%UltiSnips%html.snippets differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%UltiSnips%javascript.snippets b/legacy/.vimtmp/%home%ray%.config%vim%UltiSnips%javascript.snippets new file mode 100644 index 0000000..8f6c938 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%UltiSnips%javascript.snippets differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%UltiSnips%jinja.snippets b/legacy/.vimtmp/%home%ray%.config%vim%UltiSnips%jinja.snippets new file mode 100644 index 0000000..cd0c042 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%UltiSnips%jinja.snippets differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%after%ftplugin%html.vim b/legacy/.vimtmp/%home%ray%.config%vim%after%ftplugin%html.vim new file mode 100644 index 0000000..dfd9842 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%after%ftplugin%html.vim differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%after%syntax%vue.vim b/legacy/.vimtmp/%home%ray%.config%vim%after%syntax%vue.vim new file mode 100644 index 0000000..5e920e1 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%after%syntax%vue.vim differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%colors%monotonous-light.erb b/legacy/.vimtmp/%home%ray%.config%vim%colors%monotonous-light.erb new file mode 100644 index 0000000..1cf1a7b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%colors%monotonous-light.erb differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%config%plugins.nvim.vim b/legacy/.vimtmp/%home%ray%.config%vim%config%plugins.nvim.vim new file mode 100644 index 0000000..d45723b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%config%plugins.nvim.vim differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%config%plugins.shared.vim b/legacy/.vimtmp/%home%ray%.config%vim%config%plugins.shared.vim new file mode 100644 index 0000000..42ce5f1 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%config%plugins.shared.vim differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%config%plugins.vim b/legacy/.vimtmp/%home%ray%.config%vim%config%plugins.vim new file mode 100644 index 0000000..618e763 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%config%plugins.vim differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%help.vim b/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%help.vim new file mode 100644 index 0000000..9a73b98 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%help.vim differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%markdown.vim b/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%markdown.vim new file mode 100644 index 0000000..3c83870 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%markdown.vim differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%octobercms.com b/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%octobercms.com new file mode 100644 index 0000000..1a5facb Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%octobercms.com differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%octobercms.vim b/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%octobercms.vim new file mode 100644 index 0000000..a8809cf Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%octobercms.vim differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%python.vim b/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%python.vim new file mode 100644 index 0000000..091d72c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%ftplugin%python.vim differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%vimrc b/legacy/.vimtmp/%home%ray%.config%vim%vimrc new file mode 100644 index 0000000..7b4fdae Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%vimrc differ diff --git a/legacy/.vimtmp/%home%ray%.config%vim%vimrc.plugins.shared b/legacy/.vimtmp/%home%ray%.config%vim%vimrc.plugins.shared new file mode 100644 index 0000000..0f52719 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%vim%vimrc.plugins.shared differ diff --git a/legacy/.vimtmp/%home%ray%.config%xbindkeys%.festivalrc b/legacy/.vimtmp/%home%ray%.config%xbindkeys%.festivalrc new file mode 100644 index 0000000..fe1d617 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%xbindkeys%.festivalrc differ diff --git a/legacy/.vimtmp/%home%ray%.config%xbindkeys%xbindkeysrc b/legacy/.vimtmp/%home%ray%.config%xbindkeys%xbindkeysrc new file mode 100644 index 0000000..de525ed Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%xbindkeys%xbindkeysrc differ diff --git a/legacy/.vimtmp/%home%ray%.config%xinitrc%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%.config%xinitrc%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..13d3b33 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%xinitrc%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%.config%xinitrc%README.md b/legacy/.vimtmp/%home%ray%.config%xinitrc%README.md new file mode 100644 index 0000000..6c10598 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%xinitrc%README.md differ diff --git a/legacy/.vimtmp/%home%ray%.config%xinitrc%xinitrc b/legacy/.vimtmp/%home%ray%.config%xinitrc%xinitrc new file mode 100644 index 0000000..3f0cfec Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%xinitrc%xinitrc differ diff --git a/legacy/.vimtmp/%home%ray%.config%youtube-dl%config b/legacy/.vimtmp/%home%ray%.config%youtube-dl%config new file mode 100644 index 0000000..39fabc6 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%youtube-dl%config differ diff --git a/legacy/.vimtmp/%home%ray%.config%zsh%zshrc b/legacy/.vimtmp/%home%ray%.config%zsh%zshrc new file mode 100644 index 0000000..c056e98 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.config%zsh%zshrc differ diff --git a/legacy/.vimtmp/%home%ray%.fehbg b/legacy/.vimtmp/%home%ray%.fehbg new file mode 100644 index 0000000..6afd0ef Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.fehbg differ diff --git a/legacy/.vimtmp/%home%ray%.festivalrc b/legacy/.vimtmp/%home%ray%.festivalrc new file mode 100644 index 0000000..758dc44 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.festivalrc differ diff --git a/legacy/.vimtmp/%home%ray%.histfile b/legacy/.vimtmp/%home%ray%.histfile new file mode 100644 index 0000000..12c5ee2 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.histfile differ diff --git a/legacy/.vimtmp/%home%ray%.mutt%colors-base16.rc b/legacy/.vimtmp/%home%ray%.mutt%colors-base16.rc new file mode 100644 index 0000000..db7146d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.mutt%colors-base16.rc differ diff --git a/legacy/.vimtmp/%home%ray%.src%dwm-6.2-orig%README b/legacy/.vimtmp/%home%ray%.src%dwm-6.2-orig%README new file mode 100644 index 0000000..309cc92 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.src%dwm-6.2-orig%README differ diff --git a/legacy/.vimtmp/%home%ray%.src%dwm-6.2-orig%config.def.h b/legacy/.vimtmp/%home%ray%.src%dwm-6.2-orig%config.def.h new file mode 100644 index 0000000..f8d0d1b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.src%dwm-6.2-orig%config.def.h differ diff --git a/legacy/.vimtmp/%home%ray%.src%dwm-6.2-orig%config.h b/legacy/.vimtmp/%home%ray%.src%dwm-6.2-orig%config.h new file mode 100644 index 0000000..d2af083 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.src%dwm-6.2-orig%config.h differ diff --git a/legacy/.vimtmp/%home%ray%.src%dwm-6.2-orig%dwm.c b/legacy/.vimtmp/%home%ray%.src%dwm-6.2-orig%dwm.c new file mode 100644 index 0000000..6c673a2 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.src%dwm-6.2-orig%dwm.c differ diff --git a/legacy/.vimtmp/%home%ray%.ssh%known_hosts b/legacy/.vimtmp/%home%ray%.ssh%known_hosts new file mode 100644 index 0000000..98521df Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.ssh%known_hosts differ diff --git a/legacy/.vimtmp/%home%ray%.xinitrc.extend b/legacy/.vimtmp/%home%ray%.xinitrc.extend new file mode 100644 index 0000000..d37415e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%.xinitrc.extend differ diff --git a/legacy/.vimtmp/%home%ray%Projects%.in b/legacy/.vimtmp/%home%ray%Projects%.in new file mode 100644 index 0000000..7361a9e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%.in differ diff --git a/legacy/.vimtmp/%home%ray%Projects%README.md b/legacy/.vimtmp/%home%ray%Projects%README.md new file mode 100644 index 0000000..4202bf8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%README.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%ansible%config%qutebrowser%config.py b/legacy/.vimtmp/%home%ray%Projects%ansible%config%qutebrowser%config.py new file mode 100644 index 0000000..4072d4e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%ansible%config%qutebrowser%config.py differ diff --git a/legacy/.vimtmp/%home%ray%Projects%ansible%config%tmux%tmux.conf b/legacy/.vimtmp/%home%ray%Projects%ansible%config%tmux%tmux.conf new file mode 100644 index 0000000..ce23f52 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%ansible%config%tmux%tmux.conf differ diff --git a/legacy/.vimtmp/%home%ray%Projects%ansible%config%zsh%zshrc b/legacy/.vimtmp/%home%ray%Projects%ansible%config%zsh%zshrc new file mode 100644 index 0000000..c7d12fa Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%ansible%config%zsh%zshrc differ diff --git a/legacy/.vimtmp/%home%ray%Projects%borg-scripts%borg-data.sh b/legacy/.vimtmp/%home%ray%Projects%borg-scripts%borg-data.sh new file mode 100644 index 0000000..5adb94f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%borg-scripts%borg-data.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%borg-scripts%borg-int_data.sh b/legacy/.vimtmp/%home%ray%Projects%borg-scripts%borg-int_data.sh new file mode 100644 index 0000000..ec11d18 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%borg-scripts%borg-int_data.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%borg-scripts%borg-media.sh b/legacy/.vimtmp/%home%ray%Projects%borg-scripts%borg-media.sh new file mode 100644 index 0000000..1f3dfee Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%borg-scripts%borg-media.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%borg-scripts%borg-template.sh b/legacy/.vimtmp/%home%ray%Projects%borg-scripts%borg-template.sh new file mode 100644 index 0000000..d459bfe Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%borg-scripts%borg-template.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%.eslintrc.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%.eslintrc.js new file mode 100644 index 0000000..17d7189 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%.eslintrc.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%.eslintrc.json b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%.eslintrc.json new file mode 100644 index 0000000..53594d3 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%.eslintrc.json differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%.exlintrc.json b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%.exlintrc.json new file mode 100644 index 0000000..b02246d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%.exlintrc.json differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..e728a92 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%gatsby-browser.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%gatsby-browser.js new file mode 100644 index 0000000..38b257e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%gatsby-browser.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%gatsby-config.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%gatsby-config.js new file mode 100644 index 0000000..a00dc6f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%gatsby-config.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%package.json b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%package.json new file mode 100644 index 0000000..d2ee2e8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%package.json differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%container.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%container.js new file mode 100644 index 0000000..43389a1 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%container.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%container.module.scss b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%container.module.scss new file mode 100644 index 0000000..f876c4e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%container.module.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%container.modules.scss b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%container.modules.scss new file mode 100644 index 0000000..507080f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%container.modules.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%header.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%header.js new file mode 100644 index 0000000..fe5772e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%header.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%layout.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%layout.js new file mode 100644 index 0000000..72ac02e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%layout.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%logoAnimated.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%logoAnimated.js new file mode 100644 index 0000000..7eb241a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%components%logoAnimated.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%gatsby-browser.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%gatsby-browser.js new file mode 100644 index 0000000..b2ff81a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%gatsby-browser.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%about.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%about.js new file mode 100644 index 0000000..e038b42 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%about.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%anime-test.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%anime-test.js new file mode 100644 index 0000000..ff1d8c9 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%anime-test.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%contact.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%contact.js new file mode 100644 index 0000000..27f8e2f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%contact.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%index.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%index.js new file mode 100644 index 0000000..807d8d0 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%index.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%state.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%state.js new file mode 100644 index 0000000..9712019 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%state.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%styled-comp.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%styled-comp.js new file mode 100644 index 0000000..6f42bd7 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%styled-comp.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%test.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%test.js new file mode 100644 index 0000000..71dcce6 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%test.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%users.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%users.js new file mode 100644 index 0000000..9e8e7c9 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%users.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%users.module.scss b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%users.module.scss new file mode 100644 index 0000000..7d8ce93 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%pages%users.module.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%styles%GlobalStyleComponent.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%styles%GlobalStyleComponent.js new file mode 100644 index 0000000..a0dd40d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%styles%GlobalStyleComponent.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%styles%global.scss b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%styles%global.scss new file mode 100644 index 0000000..f18b472 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%styles%global.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%utils%typography.js b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%utils%typography.js new file mode 100644 index 0000000..59b196e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%src%utils%typography.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%svg-working%plain-triangle.svg b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%svg-working%plain-triangle.svg new file mode 100644 index 0000000..8b1fabb Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gatsby-test%hello-world%svg-working%plain-triangle.svg differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%.browserslistrc b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%.browserslistrc new file mode 100644 index 0000000..77d853f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%.browserslistrc differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..25a49be Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%README.md b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%README.md new file mode 100644 index 0000000..d1d965d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%README.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%babel.config.js b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%babel.config.js new file mode 100644 index 0000000..ee5af47 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%babel.config.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%gulpfile.js b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%gulpfile.js new file mode 100644 index 0000000..9e3bffe Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%gulpfile.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%js%index.js b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%js%index.js new file mode 100644 index 0000000..8bdc72d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%js%index.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%package.json b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%package.json new file mode 100644 index 0000000..cc4948c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%package.json differ diff --git a/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%scss%_base.scss b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%scss%_base.scss new file mode 100644 index 0000000..e5081c8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%gulp-web%src%scss%_base.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%mpv-dl-trim%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects%mpv-dl-trim%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..063484b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%mpv-dl-trim%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects%mpv-dl-trim%mpv_dl_trim.py b/legacy/.vimtmp/%home%ray%Projects%mpv-dl-trim%mpv_dl_trim.py new file mode 100644 index 0000000..5ee7d65 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%mpv-dl-trim%mpv_dl_trim.py differ diff --git a/legacy/.vimtmp/%home%ray%Projects%mpv-dl-trim%requirements.txt b/legacy/.vimtmp/%home%ray%Projects%mpv-dl-trim%requirements.txt new file mode 100644 index 0000000..2084e47 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%mpv-dl-trim%requirements.txt differ diff --git a/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%blog-html.htm b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%blog-html.htm new file mode 100644 index 0000000..f1f3496 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%blog-html.htm differ diff --git a/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%blog.htm b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%blog.htm new file mode 100644 index 0000000..d96f7be Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%blog.htm differ diff --git a/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%categories.htm b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%categories.htm new file mode 100644 index 0000000..c673070 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%categories.htm differ diff --git a/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%category.htm b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%category.htm new file mode 100644 index 0000000..cd6925c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%category.htm differ diff --git a/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%post-html.htm b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%post-html.htm new file mode 100644 index 0000000..547ed52 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%post-html.htm differ diff --git a/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%post.htm b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%post.htm new file mode 100644 index 0000000..6ae3544 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%pages%blog%post.htm differ diff --git a/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%partials%post.htm b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%partials%post.htm new file mode 100644 index 0000000..576fcc7 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%partials%post.htm differ diff --git a/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%partials%posts b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%partials%posts new file mode 100644 index 0000000..6f29d57 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%partials%posts differ diff --git a/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%partials%posts.htm b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%partials%posts.htm new file mode 100644 index 0000000..1129bf4 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%blog-vx%partials%posts.htm differ diff --git a/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%simple-json-blog%README.md b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%simple-json-blog%README.md new file mode 100644 index 0000000..11abe9b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%simple-json-blog%README.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%simple-json-blog%theme.yaml b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%simple-json-blog%theme.yaml new file mode 100644 index 0000000..bc1ef44 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html%themes%simple-json-blog%theme.yaml differ diff --git a/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html-mount.sh b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html-mount.sh new file mode 100644 index 0000000..7d928ef Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%octobercms-blog%html-mount.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%react-test%my-app%src%App.css b/legacy/.vimtmp/%home%ray%Projects%react-test%my-app%src%App.css new file mode 100644 index 0000000..82a7fcf Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%react-test%my-app%src%App.css differ diff --git a/legacy/.vimtmp/%home%ray%Projects%react-test%my-app%src%App.js b/legacy/.vimtmp/%home%ray%Projects%react-test%my-app%src%App.js new file mode 100644 index 0000000..6d2f9a3 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%react-test%my-app%src%App.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..bfa5c20 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%TODO.md b/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%TODO.md new file mode 100644 index 0000000..dbc4937 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%TODO.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%nginx-site.conf b/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%nginx-site.conf new file mode 100644 index 0000000..b49d371 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%nginx-site.conf differ diff --git a/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%octobercms-db-export.sh b/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%octobercms-db-export.sh new file mode 100644 index 0000000..312562c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%octobercms-db-export.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%setup.sh b/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%setup.sh new file mode 100644 index 0000000..cf64356 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%setup-scripts%octobercms%alpine%setup.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%studio-vx%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects%studio-vx%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..2a76456 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%studio-vx%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects%studio-vx%TODO.md b/legacy/.vimtmp/%home%ray%Projects%studio-vx%TODO.md new file mode 100644 index 0000000..31e5ae0 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%studio-vx%TODO.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%NOTES.md b/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%NOTES.md new file mode 100644 index 0000000..20ba892 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%NOTES.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%drafts%facebook-business-platform.md b/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%drafts%facebook-business-platform.md new file mode 100644 index 0000000..7e7d116 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%drafts%facebook-business-platform.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%subjects%prices-and-value.md b/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%subjects%prices-and-value.md new file mode 100644 index 0000000..306c116 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%subjects%prices-and-value.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%subjects%what-makes-a-good-website.md b/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%subjects%what-makes-a-good-website.md new file mode 100644 index 0000000..87fded3 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%subjects%what-makes-a-good-website.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%subjects%wix-driving-customers-away.md b/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%subjects%wix-driving-customers-away.md new file mode 100644 index 0000000..c36046b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%subjects%wix-driving-customers-away.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%subjects%wix-seo.md b/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%subjects%wix-seo.md new file mode 100644 index 0000000..fb5ae8f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%studio-vx%blog%subjects%wix-seo.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%studio-vx%content-marketing.md b/legacy/.vimtmp/%home%ray%Projects%studio-vx%content-marketing.md new file mode 100644 index 0000000..e4acb48 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%studio-vx%content-marketing.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%studio-vx%notes.md b/legacy/.vimtmp/%home%ray%Projects%studio-vx%notes.md new file mode 100644 index 0000000..ec88084 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%studio-vx%notes.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%studio-vx%social-media%strategies.md b/legacy/.vimtmp/%home%ray%Projects%studio-vx%social-media%strategies.md new file mode 100644 index 0000000..7babf11 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%studio-vx%social-media%strategies.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%studio-vx%social-media%twitter%tweet-01%text.txt b/legacy/.vimtmp/%home%ray%Projects%studio-vx%social-media%twitter%tweet-01%text.txt new file mode 100644 index 0000000..88f273a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%studio-vx%social-media%twitter%tweet-01%text.txt differ diff --git a/legacy/.vimtmp/%home%ray%Projects%testing%gulpfile.js b/legacy/.vimtmp/%home%ray%Projects%testing%gulpfile.js new file mode 100644 index 0000000..e474420 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%testing%gulpfile.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%testing%package.json b/legacy/.vimtmp/%home%ray%Projects%testing%package.json new file mode 100644 index 0000000..20f00a2 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%testing%package.json differ diff --git a/legacy/.vimtmp/%home%ray%Projects%upwork%NOTES.md b/legacy/.vimtmp/%home%ray%Projects%upwork%NOTES.md new file mode 100644 index 0000000..f522d8b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%upwork%NOTES.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vue%README.txt b/legacy/.vimtmp/%home%ray%Projects%vue%README.txt new file mode 100644 index 0000000..5f0dfd7 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vue%README.txt differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vue%testing%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects%vue%testing%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..11f5a9c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vue%testing%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%App.vue b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%App.vue new file mode 100644 index 0000000..d4c2cbc Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%App.vue differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%Container.vue b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%Container.vue new file mode 100644 index 0000000..d232eb8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%Container.vue differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%Floater.vue b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%Floater.vue new file mode 100644 index 0000000..2d2b8f0 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%Floater.vue differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%FloaterAlt.vue b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%FloaterAlt.vue new file mode 100644 index 0000000..bea16b1 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%FloaterAlt.vue differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%FloaterOriginal.vue b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%FloaterOriginal.vue new file mode 100644 index 0000000..4045e4d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%FloaterOriginal.vue differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%HelloWorld.vue b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%HelloWorld.vue new file mode 100644 index 0000000..144caa1 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%HelloWorld.vue differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%Switcher.vue b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%Switcher.vue new file mode 100644 index 0000000..439d327 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vue%testing%src%components%Switcher.vue differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..b953989 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%js%featured.js b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%js%featured.js new file mode 100644 index 0000000..ec24019 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%js%featured.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%js%menu.js b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%js%menu.js new file mode 100644 index 0000000..32b22f6 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%js%menu.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%js%slider.js b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%js%slider.js new file mode 100644 index 0000000..1dbc1a5 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%js%slider.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-block-slider.scss b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-block-slider.scss new file mode 100644 index 0000000..f1092d6 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-block-slider.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-featured.scss b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-featured.scss new file mode 100644 index 0000000..3a188bf Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-featured.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-header-alt.scss b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-header-alt.scss new file mode 100644 index 0000000..5b41641 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-header-alt.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-menu.scss b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-menu.scss new file mode 100644 index 0000000..f326e2d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-menu.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-utility.scss b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-utility.scss new file mode 100644 index 0000000..7cdf15c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%_vx-utility.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%style.scss b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%style.scss new file mode 100644 index 0000000..530349a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%scss%style.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%templates%header.php b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%templates%header.php new file mode 100644 index 0000000..61cb8c8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%templates%header.php differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%templates%template-homepage.php b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%templates%template-homepage.php new file mode 100644 index 0000000..06422fa Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-block%theme%assets%templates%template-homepage.php differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%.gitignore b/legacy/.vimtmp/%home%ray%Projects%vx-clip%.gitignore new file mode 100644 index 0000000..18fd9d2 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%.gitignore differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%README.md b/legacy/.vimtmp/%home%ray%Projects%vx-clip%README.md new file mode 100644 index 0000000..272c429 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%README.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%TODO.md b/legacy/.vimtmp/%home%ray%Projects%vx-clip%TODO.md new file mode 100644 index 0000000..b2adeef Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%TODO.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%env.sh b/legacy/.vimtmp/%home%ray%Projects%vx-clip%env.sh new file mode 100644 index 0000000..14ef5b5 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%env.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%env.sh.example b/legacy/.vimtmp/%home%ray%Projects%vx-clip%env.sh.example new file mode 100644 index 0000000..b6f6865 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%env.sh.example differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%mount-wp-content.sh b/legacy/.vimtmp/%home%ray%Projects%vx-clip%mount-wp-content.sh new file mode 100755 index 0000000..8a68bb7 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%mount-wp-content.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%uidfile b/legacy/.vimtmp/%home%ray%Projects%vx-clip%uidfile new file mode 100644 index 0000000..f9d41e4 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%uidfile differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..70131f0 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%functions.php b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%functions.php new file mode 100644 index 0000000..1a4293b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%functions.php differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%.babelrc b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%.babelrc new file mode 100644 index 0000000..2143c08 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%.babelrc differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%.eslintignore b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%.eslintignore new file mode 100644 index 0000000..d08fe58 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%.eslintignore differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%.eslintrc.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%.eslintrc.js new file mode 100644 index 0000000..dd9e184 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%.eslintrc.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%js%index.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%js%index.js new file mode 100644 index 0000000..3c31a7f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%js%index.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%scss%_base.scss b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%scss%_base.scss new file mode 100644 index 0000000..a4cae24 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%scss%_base.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%scss%_variables.scss b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%scss%_variables.scss new file mode 100644 index 0000000..bd0d7d0 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%scss%_variables.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%scss%main.scss b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%scss%main.scss new file mode 100644 index 0000000..546a7b9 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%scss%main.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%scss%style.scss b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%scss%style.scss new file mode 100644 index 0000000..099f723 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%assets%scss%style.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%babel.config.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%babel.config.js new file mode 100644 index 0000000..fac29e6 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%babel.config.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%gulpfile.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%gulpfile.js new file mode 100644 index 0000000..73da95e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%gulpfile.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%js%index.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%js%index.js new file mode 100644 index 0000000..21404b2 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%js%index.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%node_modules%has-value%index.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%node_modules%has-value%index.js new file mode 100644 index 0000000..b94d31c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%node_modules%has-value%index.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%package.json b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%package.json new file mode 100644 index 0000000..2150717 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%package.json differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%postcss.config.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%postcss.config.js new file mode 100644 index 0000000..9aadbdc Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%postcss.config.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%scss%_base.scss b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%scss%_base.scss new file mode 100644 index 0000000..ac252b9 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%scss%_base.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%scss%style.scss b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%scss%style.scss new file mode 100644 index 0000000..c211041 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%scss%style.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%webpack.config.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%webpack.config.js new file mode 100644 index 0000000..d95d674 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%src%webpack.config.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%.babelrc b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%.babelrc new file mode 100644 index 0000000..db11839 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%.babelrc differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%assets%scripts%main.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%assets%scripts%main.js new file mode 100644 index 0000000..beecec2 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%assets%scripts%main.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%assets%styles%main.scss b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%assets%styles%main.scss new file mode 100644 index 0000000..68341b0 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%assets%styles%main.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%build.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%build.js new file mode 100644 index 0000000..512701b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%build.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%config.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%config.js new file mode 100644 index 0000000..79b0f37 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%config.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%hmr%index.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%hmr%index.js new file mode 100644 index 0000000..07007bd Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%hmr%index.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%hmr%overlay.json b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%hmr%overlay.json new file mode 100644 index 0000000..7b65cb2 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%hmr%overlay.json differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%non-js-entry-cleanup-plugin%index.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%non-js-entry-cleanup-plugin%index.js new file mode 100644 index 0000000..3ec018d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%non-js-entry-cleanup-plugin%index.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%publicPath.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%publicPath.js new file mode 100644 index 0000000..b9d35db Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%publicPath.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%serve.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%serve.js new file mode 100644 index 0000000..ae20821 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%serve.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%webpack.config.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%webpack.config.js new file mode 100644 index 0000000..fd619b0 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%compiler%webpack.config.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%package.json b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%package.json new file mode 100644 index 0000000..e1cbbe1 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%package.json differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%postcss.config.js b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%postcss.config.js new file mode 100644 index 0000000..f56371b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-content%themes%my-child-theme%webpack%postcss.config.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-mount.sh b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-mount.sh new file mode 100755 index 0000000..94a1360 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-mount.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-plugins.sh b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-plugins.sh new file mode 100755 index 0000000..e20f3f2 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-plugins.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-test-data.sh b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-test-data.sh new file mode 100755 index 0000000..1a66030 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-test-data.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-woocommerce.sh b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-woocommerce.sh new file mode 100755 index 0000000..27200e9 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-clip%wp-woocommerce.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%components%Header.vue b/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%components%Header.vue new file mode 100644 index 0000000..b84838b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%components%Header.vue differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%components%LangSwitcher.vue b/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%components%LangSwitcher.vue new file mode 100644 index 0000000..6ee1eeb Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%components%LangSwitcher.vue differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%components%Page.vue b/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%components%Page.vue new file mode 100644 index 0000000..19fdd93 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%components%Page.vue differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%components%PageContent.vue b/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%components%PageContent.vue new file mode 100644 index 0000000..372b9fe Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%components%PageContent.vue differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%nuxt.config.js b/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%nuxt.config.js new file mode 100644 index 0000000..e68172c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%nuxt.config.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%pages%contact.vue b/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%pages%contact.vue new file mode 100644 index 0000000..64c4c92 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%vx-nuxt%pages%contact.vue differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%mount.sh b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%mount.sh new file mode 100644 index 0000000..6ab07c3 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%mount.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..b22b5d9 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%js%block.js b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%js%block.js new file mode 100644 index 0000000..624232d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%js%block.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%js%index.js b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%js%index.js new file mode 100644 index 0000000..2db0735 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%js%index.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%_animations.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%_animations.scss new file mode 100644 index 0000000..6056832 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%_animations.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%_base.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%_base.scss new file mode 100644 index 0000000..a7923b0 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%_base.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%_mixins.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%_mixins.scss new file mode 100644 index 0000000..6f443e0 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%_mixins.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%_variables.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%_variables.scss new file mode 100644 index 0000000..1669549 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%_variables.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%editor.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%editor.scss new file mode 100644 index 0000000..4fcde4b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%editor.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%style.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%style.scss new file mode 100644 index 0000000..baea293 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%src%scss%style.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%woo-featured.php b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%woo-featured.php new file mode 100644 index 0000000..8bbcbf7 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-featured%woo-featured%woo-featured.php differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..c7bd833 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%TODO.md b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%TODO.md new file mode 100644 index 0000000..c5b7f44 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%TODO.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%header.php b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%header.php new file mode 100644 index 0000000..5788088 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%header.php differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%js%index.js b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%js%index.js new file mode 100644 index 0000000..c1b6c61 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%js%index.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_base.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_base.scss new file mode 100644 index 0000000..a934dfe Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_base.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_header.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_header.scss new file mode 100644 index 0000000..8e2f422 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_header.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_layout.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_layout.scss new file mode 100644 index 0000000..781f7d8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_layout.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_mixins.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_mixins.scss new file mode 100644 index 0000000..cce31db Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_mixins.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_mixinx.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_mixinx.scss new file mode 100644 index 0000000..9c0d7cc Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_mixinx.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_transitions.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_transitions.scss new file mode 100644 index 0000000..72d7fde Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_transitions.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_variables.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_variables.scss new file mode 100644 index 0000000..cca469c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_variables.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_vx-wh-header.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_vx-wh-header.scss new file mode 100644 index 0000000..c8bbd6b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%_vx-wh-header.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%style.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%style.scss new file mode 100644 index 0000000..ebf5880 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%src%scss%style.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%woo-header.php b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%woo-header.php new file mode 100644 index 0000000..9d73d4f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%woo-header%woo-header.php differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%wp-mount.sh b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%wp-mount.sh new file mode 100644 index 0000000..504c594 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-header%wp-mount.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%mount.sh b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%mount.sh new file mode 100644 index 0000000..bb6846c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%mount.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..cbc2778 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%hero.php b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%hero.php new file mode 100644 index 0000000..dee4b45 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%hero.php differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%inc%acf%acf.php b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%inc%acf%acf.php new file mode 100644 index 0000000..0880786 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%inc%acf%acf.php differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%hero.php b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%hero.php new file mode 100644 index 0000000..a26b7ee Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%hero.php differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%js%index.js b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%js%index.js new file mode 100644 index 0000000..d40a701 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%js%index.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%_animations.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%_animations.scss new file mode 100644 index 0000000..ca4ed59 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%_animations.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%_layout.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%_layout.scss new file mode 100644 index 0000000..bfc7516 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%_layout.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%_mixins.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%_mixins.scss new file mode 100644 index 0000000..6b4f777 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%_mixins.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%_variables.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%_variables.scss new file mode 100644 index 0000000..42ca9f5 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%_variables.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%style.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%style.scss new file mode 100644 index 0000000..92422c3 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%src%scss%style.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%woo-hero.php b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%woo-hero.php new file mode 100644 index 0000000..55e5d78 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-hero%woo-hero%woo-hero.php differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%mount.sh b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%mount.sh new file mode 100644 index 0000000..33471ad Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%mount.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..f01ffef Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%functions.php b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%functions.php new file mode 100644 index 0000000..3f88242 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%functions.php differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%src%js%index.js b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%src%js%index.js new file mode 100644 index 0000000..ced872f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%src%js%index.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%src%scss%_layout.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%src%scss%_layout.scss new file mode 100644 index 0000000..bc2bfa2 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%src%scss%_layout.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%src%scss%_variables.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%src%scss%_variables.scss new file mode 100644 index 0000000..c854596 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%src%scss%_variables.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%src%scss%style.scss b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%src%scss%style.scss new file mode 100644 index 0000000..c37bb67 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%src%scss%style.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%style.css b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%style.css new file mode 100644 index 0000000..6f41ed4 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects%wordpress%woo-vxi%woo-vxi%style.css differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%arch-update-checker%arch-update-check.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%arch-update-checker%arch-update-check.sh new file mode 100644 index 0000000..975e37c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%arch-update-checker%arch-update-check.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%arch-update-checker%notify-updates b/legacy/.vimtmp/%home%ray%Projects-Sync%arch-update-checker%notify-updates new file mode 100644 index 0000000..5f4ae67 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%arch-update-checker%notify-updates differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%arch-update-checker%notify-updates.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%arch-update-checker%notify-updates.sh new file mode 100644 index 0000000..ff9a0e3 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%arch-update-checker%notify-updates.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%arch-update-checker%pacman-update-count.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%arch-update-checker%pacman-update-count.sh new file mode 100644 index 0000000..8d4da9d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%arch-update-checker%pacman-update-count.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%dns-sync%dnsmasq.d%04-pihole-static-dhcp.conf b/legacy/.vimtmp/%home%ray%Projects-Sync%dns-sync%dnsmasq.d%04-pihole-static-dhcp.conf new file mode 100644 index 0000000..5e03e22 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%dns-sync%dnsmasq.d%04-pihole-static-dhcp.conf differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%dns-sync%dnsmasq.d%90-custom-dns.conf b/legacy/.vimtmp/%home%ray%Projects-Sync%dns-sync%dnsmasq.d%90-custom-dns.conf new file mode 100644 index 0000000..6c4363b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%dns-sync%dnsmasq.d%90-custom-dns.conf differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%dns-sync%sync.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%dns-sync%sync.sh new file mode 100644 index 0000000..9c2ea2c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%dns-sync%sync.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%hostname-sync%dnsmasq.d%04-pihole-static-dhcp.conf b/legacy/.vimtmp/%home%ray%Projects-Sync%hostname-sync%dnsmasq.d%04-pihole-static-dhcp.conf new file mode 100644 index 0000000..86b704d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%hostname-sync%dnsmasq.d%04-pihole-static-dhcp.conf differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%hostname-sync%dnsmasq.d%90-custom-dns.conf b/legacy/.vimtmp/%home%ray%Projects-Sync%hostname-sync%dnsmasq.d%90-custom-dns.conf new file mode 100644 index 0000000..cf345df Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%hostname-sync%dnsmasq.d%90-custom-dns.conf differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%install-scripts%xdg-dirs.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%install-scripts%xdg-dirs.sh new file mode 100644 index 0000000..f82e379 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%install-scripts%xdg-dirs.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott-flow-model-management%components%Footer.vue b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott-flow-model-management%components%Footer.vue new file mode 100644 index 0000000..f7673ec Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott-flow-model-management%components%Footer.vue differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..5742dd8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%.git%info%exclude b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%.git%info%exclude new file mode 100644 index 0000000..242aa66 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%.git%info%exclude differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..97b2992 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%.gitignore b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%.gitignore new file mode 100644 index 0000000..742bb56 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%.gitignore differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%NOTES.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%NOTES.md new file mode 100644 index 0000000..f2f7381 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%NOTES.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%README.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%README.md new file mode 100644 index 0000000..276e58f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%README.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%TODO.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%TODO.md new file mode 100644 index 0000000..bc64940 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%TODO.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%assets%css%_about.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%assets%css%_about.scss new file mode 100644 index 0000000..5c49cf1 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%assets%css%_about.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%assets%css%main.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%assets%css%main.scss new file mode 100644 index 0000000..91e2e9f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%assets%css%main.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%assets%css%mixins.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%assets%css%mixins.scss new file mode 100644 index 0000000..d88464b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%assets%css%mixins.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%assets%scss%main.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%assets%scss%main.scss new file mode 100644 index 0000000..187335d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%assets%scss%main.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%blog%publish.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%blog%publish.sh new file mode 100644 index 0000000..375458d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%blog%publish.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%build.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%build.sh new file mode 100755 index 0000000..518a8d7 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%build.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%config.toml b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%config.toml new file mode 100644 index 0000000..969bca8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%config.toml differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%about.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%about.html new file mode 100644 index 0000000..bc87289 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%about.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%about.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%about.md new file mode 100644 index 0000000..6b23ea9 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%about.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%portfolio%flowmm.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%portfolio%flowmm.md new file mode 100644 index 0000000..ca82897 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%portfolio%flowmm.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%bootstrap-vs-tailwind.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%bootstrap-vs-tailwind.md new file mode 100644 index 0000000..d50172f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%bootstrap-vs-tailwind.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%developing-my-blog.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%developing-my-blog.md new file mode 100644 index 0000000..fa59cf4 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%developing-my-blog.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%flowmm.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%flowmm.md new file mode 100644 index 0000000..f4f84a8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%flowmm.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%giana.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%giana.md new file mode 100644 index 0000000..3687567 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%giana.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%leopold.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%leopold.md new file mode 100644 index 0000000..8888e00 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%leopold.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%my-first-wordpress-site.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%my-first-wordpress-site.md new file mode 100644 index 0000000..7c26fa2 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%my-first-wordpress-site.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%stanthams.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%stanthams.md new file mode 100644 index 0000000..104e89a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%posts%stanthams.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%test.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%test.html new file mode 100644 index 0000000..362e711 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%content%test.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%flowmm-notes.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%flowmm-notes.md new file mode 100644 index 0000000..9b43051 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%flowmm-notes.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%layouts%partials%svg%gitea.svg b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%layouts%partials%svg%gitea.svg new file mode 100644 index 0000000..b10754a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%layouts%partials%svg%gitea.svg differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%layouts%partials%svg%linkedin.svg b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%layouts%partials%svg%linkedin.svg new file mode 100644 index 0000000..99ba7b5 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%layouts%partials%svg%linkedin.svg differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%layouts%shortcodes%baseurl.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%layouts%shortcodes%baseurl.html new file mode 100644 index 0000000..22668ac Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%layouts%shortcodes%baseurl.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%layouts%shortcodes%divwrap.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%layouts%shortcodes%divwrap.html new file mode 100644 index 0000000..e427530 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%layouts%shortcodes%divwrap.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%octobercms.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%octobercms.md new file mode 100644 index 0000000..6975307 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%octobercms.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%publish.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%publish.sh new file mode 100644 index 0000000..6e7dd27 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%publish.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%serve.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%serve.sh new file mode 100644 index 0000000..41d4e35 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%serve.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%static%css%custom.css b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%static%css%custom.css new file mode 100644 index 0000000..e2cd5e2 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%static%css%custom.css differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%static%custom.css b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%static%custom.css new file mode 100644 index 0000000..b7641cf Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%static%custom.css differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..22551e1 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%README.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%README.md new file mode 100644 index 0000000..c177d90 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%README.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_base.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_base.scss new file mode 100644 index 0000000..2d83243 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_base.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_base_dark.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_base_dark.scss new file mode 100644 index 0000000..e70a1d1 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_base_dark.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_content.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_content.scss new file mode 100644 index 0000000..cc86184 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_content.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_content_dark.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_content_dark.scss new file mode 100644 index 0000000..4f2a6a6 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_content_dark.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_footer.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_footer.scss new file mode 100644 index 0000000..b37ff68 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_footer.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_footer_dark.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_footer_dark.scss new file mode 100644 index 0000000..ce2b4d9 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_footer_dark.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_navigation.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_navigation.scss new file mode 100644 index 0000000..5f11334 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_navigation.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_pagination.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_pagination.scss new file mode 100644 index 0000000..9e86ecc Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_pagination.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_variables.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_variables.scss new file mode 100644 index 0000000..92f48dd Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%assets%scss%_variables.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%_default%baseof.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%_default%baseof.html new file mode 100644 index 0000000..9fd72f2 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%_default%baseof.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%_default%list.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%_default%list.html new file mode 100644 index 0000000..8188c4e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%_default%list.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%footer.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%footer.html new file mode 100644 index 0000000..b34e0d4 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%footer.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%header.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%header.html new file mode 100644 index 0000000..1df07a4 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%header.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%home.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%home.html new file mode 100644 index 0000000..269c0d8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%home.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%list.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%list.html new file mode 100644 index 0000000..1314ac9 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%list.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%pagination.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%pagination.html new file mode 100644 index 0000000..ae179d8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%pagination.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%posts%series.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%posts%series.html new file mode 100644 index 0000000..ce7ed83 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%posts%series.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%calendar.svg b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%calendar.svg new file mode 100644 index 0000000..ed3e6dd Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%calendar.svg differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%clock.svg b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%clock.svg new file mode 100644 index 0000000..f10ce6b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%clock.svg differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%folder.svg b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%folder.svg new file mode 100644 index 0000000..1322eef Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%folder.svg differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%hamburder.svg b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%hamburder.svg new file mode 100644 index 0000000..fe74b93 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%hamburder.svg differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%hamburger.svg b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%hamburger.svg new file mode 100644 index 0000000..a7cb779 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%hamburger.svg differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%linkedin.svg b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%linkedin.svg new file mode 100644 index 0000000..f8fbd5b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%linkedin.svg differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%tag.svg b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%tag.svg new file mode 100644 index 0000000..b9a3b07 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%svg%tag.svg differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%taxonomy%categories.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%taxonomy%categories.html new file mode 100644 index 0000000..b255113 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%taxonomy%categories.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%taxonomy%tags.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%taxonomy%tags.html new file mode 100644 index 0000000..c9ea3b1 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%partials%taxonomy%tags.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%posts%list.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%posts%list.html new file mode 100644 index 0000000..64b7220 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%posts%list.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%posts%single.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%posts%single.html new file mode 100644 index 0000000..361b8b5 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%layouts%posts%single.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%static%js%script.js b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%static%js%script.js new file mode 100644 index 0000000..5c34871 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog%themes%hugo-coder%static%js%script.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog.html new file mode 100644 index 0000000..7452fc1 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%blog.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%gulpfile.js b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%gulpfile.js new file mode 100644 index 0000000..3976351 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%gulpfile.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo%quickstart%config.toml b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo%quickstart%config.toml new file mode 100644 index 0000000..f9aa90f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo%quickstart%config.toml differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo%quickstart%content%posts%my-first-post.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo%quickstart%content%posts%my-first-post.md new file mode 100644 index 0000000..5144902 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo%quickstart%content%posts%my-first-post.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo-coder-fork%README.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo-coder-fork%README.md new file mode 100644 index 0000000..a5080c6 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo-coder-fork%README.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo-coder-fork%assets%scss%_variables.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo-coder-fork%assets%scss%_variables.scss new file mode 100644 index 0000000..cd69409 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo-coder-fork%assets%scss%_variables.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo-coder-fork%layouts%_default%baseof.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo-coder-fork%layouts%_default%baseof.html new file mode 100644 index 0000000..0965ee4 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%hugo-coder-fork%layouts%_default%baseof.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%blog.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%blog.html new file mode 100644 index 0000000..2bfd000 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%blog.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%img%home-bg.svg b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%img%home-bg.svg new file mode 100644 index 0000000..288b333 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%img%home-bg.svg differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%index.html b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%index.html new file mode 100644 index 0000000..eb3f8ad Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%index.html differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%js%AutoScroll.js b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%js%AutoScroll.js new file mode 100644 index 0000000..8e35ae4 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%js%AutoScroll.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%js%blog.js b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%js%blog.js new file mode 100644 index 0000000..6b8ffc6 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%js%blog.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%js%index.js b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%js%index.js new file mode 100644 index 0000000..8676f38 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%js%index.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%pages%blog.njk b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%pages%blog.njk new file mode 100644 index 0000000..1a0f58f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%pages%blog.njk differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%pages%index.njk b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%pages%index.njk new file mode 100644 index 0000000..c7a1457 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%pages%index.njk differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_animations.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_animations.scss new file mode 100644 index 0000000..7dbb94f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_animations.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_base.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_base.scss new file mode 100644 index 0000000..1485410 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_base.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_layout.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_layout.scss new file mode 100644 index 0000000..bbe64d7 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_layout.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_mixins.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_mixins.scss new file mode 100644 index 0000000..e6e8e5f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_mixins.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_section.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_section.scss new file mode 100644 index 0000000..05db273 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_section.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_variables.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_variables.scss new file mode 100644 index 0000000..59b2642 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%_variables.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%sections%_about.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%sections%_about.scss new file mode 100644 index 0000000..0a49cf4 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%sections%_about.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%sections%_contact.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%sections%_contact.scss new file mode 100644 index 0000000..c361b56 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%sections%_contact.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%sections%_home.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%sections%_home.scss new file mode 100644 index 0000000..eb93655 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%sections%_home.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%sections%_projects.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%sections%_projects.scss new file mode 100644 index 0000000..00634d6 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%sections%_projects.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%style.scss b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%style.scss new file mode 100644 index 0000000..f7ff771 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%scss%style.scss differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%svg%home-bg.svg b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%svg%home-bg.svg new file mode 100644 index 0000000..c7bca9a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%svg%home-bg.svg differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%layout.njk b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%layout.njk new file mode 100644 index 0000000..c20c1bb Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%layout.njk differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%partials%site-nav.njk b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%partials%site-nav.njk new file mode 100644 index 0000000..ebf835a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%partials%site-nav.njk differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%sections%about.njk b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%sections%about.njk new file mode 100644 index 0000000..6d4ceba Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%sections%about.njk differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%sections%contact.njk b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%sections%contact.njk new file mode 100644 index 0000000..7977e9f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%sections%contact.njk differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%sections%home.njk b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%sections%home.njk new file mode 100644 index 0000000..a125021 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%sections%home.njk differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%sections%projects.njk b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%sections%projects.njk new file mode 100644 index 0000000..ccea6f2 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%sections%projects.njk differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%site-nav.njk b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%site-nav.njk new file mode 100644 index 0000000..780e8ef Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%site-nav.njk differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%svg%home-bg.svg b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%svg%home-bg.svg new file mode 100644 index 0000000..bc5189b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliott.dev%src%templates%svg%home-bg.svg differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..97ef86d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%.gitignore b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%.gitignore new file mode 100644 index 0000000..b08967e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%.gitignore differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%NOTES.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%NOTES.md new file mode 100644 index 0000000..0eac0b7 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%NOTES.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%README.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%README.md new file mode 100644 index 0000000..d4f355a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%README.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%linkedin-summary.txt b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%linkedin-summary.txt new file mode 100644 index 0000000..86fb167 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%linkedin-summary.txt differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%peopleperhour%feed%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%peopleperhour%feed%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..b7eb89a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%peopleperhour%feed%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%peopleperhour%feed%main.py b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%peopleperhour%feed%main.py new file mode 100644 index 0000000..93f35ff Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%peopleperhour%feed%main.py differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%peopleperhour%offers%notes.txt b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%peopleperhour%offers%notes.txt new file mode 100644 index 0000000..6fe99bb Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%peopleperhour%offers%notes.txt differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%pph-feed%main.py b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%pph-feed%main.py new file mode 100644 index 0000000..dd0667e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%pph-feed%main.py differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%pph-personalise-your-application.txt b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%pph-personalise-your-application.txt new file mode 100644 index 0000000..d6507e9 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%pph-personalise-your-application.txt differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%pph-summary.txt b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%pph-summary.txt new file mode 100644 index 0000000..2c346a8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%pph-summary.txt differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%roadmap.md b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%roadmap.md new file mode 100644 index 0000000..779e965 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%roadmap.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%simple-website-using-javascript-html-and-css-beginners-2739072.txt b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%simple-website-using-javascript-html-and-css-beginners-2739072.txt new file mode 100644 index 0000000..5205e60 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%rayelliottdev%simple-website-using-javascript-html-and-css-beginners-2739072.txt differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..7fabc04 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%README.md b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%README.md new file mode 100644 index 0000000..8bc608d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%README.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%install.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%install.sh new file mode 100644 index 0000000..cb59dd0 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%install.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%src%date-show b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%src%date-show new file mode 100644 index 0000000..fe2b5e8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%src%date-show differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%src%newbash b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%src%newbash new file mode 100644 index 0000000..416acf1 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%src%newbash differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%src%newsh b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%src%newsh new file mode 100644 index 0000000..42289e6 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%src%newsh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%src%pam-say b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%src%pam-say new file mode 100644 index 0000000..d58492a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%src%pam-say differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%uninstall.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%uninstall.sh new file mode 100644 index 0000000..883e874 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%scripts%uninstall.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%tts%festival%date-show b/legacy/.vimtmp/%home%ray%Projects-Sync%tts%festival%date-show new file mode 100644 index 0000000..7d3ff8b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%tts%festival%date-show differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%tts%festival%time-long.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%tts%festival%time-long.sh new file mode 100644 index 0000000..65e9fe3 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%tts%festival%time-long.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..e722401 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%README.md b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%README.md new file mode 100644 index 0000000..24defba Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%README.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%bookmark-add b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%bookmark-add new file mode 100644 index 0000000..432d9b0 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%bookmark-add differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%bookmark-get b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%bookmark-get new file mode 100644 index 0000000..bca472a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%bookmark-get differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%bookmark-menu b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%bookmark-menu new file mode 100644 index 0000000..e828d3c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%bookmark-menu differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%bookmark-menu.config b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%bookmark-menu.config new file mode 100644 index 0000000..26c82b8 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%bookmark-menu.config differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%get-bookmark b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%get-bookmark new file mode 100644 index 0000000..0a013cd Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%get-bookmark differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%universal-bookmark b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%universal-bookmark new file mode 100644 index 0000000..2e4fd10 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%universal-bookmarks%universal-bookmark differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..a6a8bce Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%README.md b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%README.md new file mode 100644 index 0000000..27ca8df Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%README.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%install.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%install.sh new file mode 100644 index 0000000..655fc5f Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%install.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%notify-updates b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%notify-updates new file mode 100644 index 0000000..f4f55cd Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%notify-updates differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%notify-updates.config b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%notify-updates.config new file mode 100644 index 0000000..1abaa43 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%notify-updates.config differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%pacman-update-count.service b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%pacman-update-count.service new file mode 100644 index 0000000..de4bdb4 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%pacman-update-count.service differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%pacman-update-count.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%pacman-update-count.sh new file mode 100644 index 0000000..62991eb Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%pacman-update-count.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%pacman-update-count.timer b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%pacman-update-count.timer new file mode 100644 index 0000000..eabcc30 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%pacman-update-count.timer differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%uninstall.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%uninstall.sh new file mode 100644 index 0000000..ba97a84 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%uninstall.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%update-notifier.service b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%update-notifier.service new file mode 100644 index 0000000..31b2c3c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%update-notifier.service differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%update-notifier.timer b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%update-notifier.timer new file mode 100644 index 0000000..3030094 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%update-notifier%update-notifier.timer differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%upwork%NOTES.md b/legacy/.vimtmp/%home%ray%Projects-Sync%upwork%NOTES.md new file mode 100644 index 0000000..b3b05b4 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%upwork%NOTES.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%upwork%linkedin-summary.txt b/legacy/.vimtmp/%home%ray%Projects-Sync%upwork%linkedin-summary.txt new file mode 100644 index 0000000..3d43771 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%upwork%linkedin-summary.txt differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%vx-nuxt%README.md b/legacy/.vimtmp/%home%ray%Projects-Sync%vx-nuxt%README.md new file mode 100644 index 0000000..5432202 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%vx-nuxt%README.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%vx-nuxt%lang%de-DE.js b/legacy/.vimtmp/%home%ray%Projects-Sync%vx-nuxt%lang%de-DE.js new file mode 100644 index 0000000..df83d65 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%vx-nuxt%lang%de-DE.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%vx-nuxt%nuxt.config.js b/legacy/.vimtmp/%home%ray%Projects-Sync%vx-nuxt%nuxt.config.js new file mode 100644 index 0000000..3af5d47 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%vx-nuxt%nuxt.config.js differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%woo-shop%candidate%products%monaco-resize.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%woo-shop%candidate%products%monaco-resize.sh new file mode 100644 index 0000000..042b510 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%woo-shop%candidate%products%monaco-resize.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%woo-shop%products%grey-loose-neck-knitwear%monaco-resize.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%woo-shop%products%grey-loose-neck-knitwear%monaco-resize.sh new file mode 100644 index 0000000..2a5758d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%woo-shop%products%grey-loose-neck-knitwear%monaco-resize.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-blank%config b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-blank%config new file mode 100644 index 0000000..131422d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-blank%config differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..0e78281 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%.gitignore b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%.gitignore new file mode 100644 index 0000000..e030523 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%.gitignore differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%README.md b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%README.md new file mode 100644 index 0000000..00a8202 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%README.md differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%config b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%config new file mode 100644 index 0000000..ddf1851 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%config differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%config-example b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%config-example new file mode 100644 index 0000000..045549c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%config-example differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%container-setup.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%container-setup.sh new file mode 100644 index 0000000..169dc62 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%container-setup.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%deploy-to-container.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%deploy-to-container.sh new file mode 100644 index 0000000..d76e52a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%deploy-to-container.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev%config%000-default.conf b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev%config%000-default.conf new file mode 100644 index 0000000..e0450d0 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev%config%000-default.conf differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev%container-create.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev%container-create.sh new file mode 100644 index 0000000..48d1cdb Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev%container-create.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev%download-data.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev%download-data.sh new file mode 100644 index 0000000..ff1e8d7 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev%download-data.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev%export-data.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev%export-data.sh new file mode 100644 index 0000000..b1dc887 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev%export-data.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev-container-deploy.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev-container-deploy.sh new file mode 100644 index 0000000..a44fb67 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev-container-deploy.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev-setup-notes.txt b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev-setup-notes.txt new file mode 100644 index 0000000..1ffb42e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%dev-setup-notes.txt differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%install.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%install.sh new file mode 100644 index 0000000..b817f59 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%install.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%notes.txt b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%notes.txt new file mode 100644 index 0000000..dd24c74 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%notes.txt differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%prod-webserver-provision.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%prod-webserver-provision.sh new file mode 100644 index 0000000..a44a555 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%prod-webserver-provision.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%config%nginx.conf b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%config%nginx.conf new file mode 100644 index 0000000..9dafb5a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%config%nginx.conf differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%config%wp-config-forward-headers.php b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%config%wp-config-forward-headers.php new file mode 100644 index 0000000..8e102da Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%config%wp-config-forward-headers.php differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%docker-compose.yml b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%docker-compose.yml new file mode 100644 index 0000000..84e8c3c Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%docker-compose.yml differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%export-data.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%export-data.sh new file mode 100644 index 0000000..137b9a7 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%export-data.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%export-to-production.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%export-to-production.sh new file mode 100644 index 0000000..12aa179 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%export-to-production.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%webserver-setup.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%webserver-setup.sh new file mode 100644 index 0000000..28163c3 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%production%webserver-setup.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%publish.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%publish.sh new file mode 100644 index 0000000..7286d13 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%publish.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%webserver-provision.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%webserver-provision.sh new file mode 100644 index 0000000..68c8ca9 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%webserver-provision.sh differ diff --git a/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%webserver-setup.sh b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%webserver-setup.sh new file mode 100644 index 0000000..5114828 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Projects-Sync%wordpress-dev%webserver-setup.sh differ diff --git a/legacy/.vimtmp/%home%ray%Sync%bookmarks%bookmarks-saved b/legacy/.vimtmp/%home%ray%Sync%bookmarks%bookmarks-saved new file mode 100644 index 0000000..a9a9c6b Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Sync%bookmarks%bookmarks-saved differ diff --git a/legacy/.vimtmp/%home%ray%Sync%qutebrowser%quickmarks b/legacy/.vimtmp/%home%ray%Sync%qutebrowser%quickmarks new file mode 100644 index 0000000..cb36655 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Sync%qutebrowser%quickmarks differ diff --git a/legacy/.vimtmp/%home%ray%Temp%borg-scripts%borg-template.sh b/legacy/.vimtmp/%home%ray%Temp%borg-scripts%borg-template.sh new file mode 100644 index 0000000..024556a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Temp%borg-scripts%borg-template.sh differ diff --git a/legacy/.vimtmp/%home%ray%Temp%gsap%assets%css%style.css b/legacy/.vimtmp/%home%ray%Temp%gsap%assets%css%style.css new file mode 100644 index 0000000..f94f4da Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Temp%gsap%assets%css%style.css differ diff --git a/legacy/.vimtmp/%home%ray%Temp%gsap%assets%js%index.js b/legacy/.vimtmp/%home%ray%Temp%gsap%assets%js%index.js new file mode 100644 index 0000000..014affe Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Temp%gsap%assets%js%index.js differ diff --git a/legacy/.vimtmp/%home%ray%Temp%gsap%index.html b/legacy/.vimtmp/%home%ray%Temp%gsap%index.html new file mode 100644 index 0000000..29e1cff Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Temp%gsap%index.html differ diff --git a/legacy/.vimtmp/%home%ray%Temp%test.sh b/legacy/.vimtmp/%home%ray%Temp%test.sh new file mode 100644 index 0000000..ea7d03d Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Temp%test.sh differ diff --git a/legacy/.vimtmp/%home%ray%Temp%text-filters%assets%css%style.css b/legacy/.vimtmp/%home%ray%Temp%text-filters%assets%css%style.css new file mode 100644 index 0000000..a785390 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Temp%text-filters%assets%css%style.css differ diff --git a/legacy/.vimtmp/%home%ray%Temp%text-filters%index.html b/legacy/.vimtmp/%home%ray%Temp%text-filters%index.html new file mode 100644 index 0000000..fe2e7df Binary files /dev/null and b/legacy/.vimtmp/%home%ray%Temp%text-filters%index.html differ diff --git a/legacy/.vimtmp/%home%ray%mirrorlist-update.sh b/legacy/.vimtmp/%home%ray%mirrorlist-update.sh new file mode 100644 index 0000000..de170fe Binary files /dev/null and b/legacy/.vimtmp/%home%ray%mirrorlist-update.sh differ diff --git a/legacy/.vimtmp/%home%ray%proxmox-startup.md b/legacy/.vimtmp/%home%ray%proxmox-startup.md new file mode 100644 index 0000000..3885a0e Binary files /dev/null and b/legacy/.vimtmp/%home%ray%proxmox-startup.md differ diff --git a/legacy/.vimtmp/%home%ray%pve-spice.sh b/legacy/.vimtmp/%home%ray%pve-spice.sh new file mode 100644 index 0000000..4c51f6a Binary files /dev/null and b/legacy/.vimtmp/%home%ray%pve-spice.sh differ diff --git a/legacy/.vimtmp/%home%ray%scroll_mouse.sh b/legacy/.vimtmp/%home%ray%scroll_mouse.sh new file mode 100644 index 0000000..87bdec5 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%scroll_mouse.sh differ diff --git a/legacy/.vimtmp/%home%ray%surfUntarget.js b/legacy/.vimtmp/%home%ray%surfUntarget.js new file mode 100644 index 0000000..3dedbe4 Binary files /dev/null and b/legacy/.vimtmp/%home%ray%surfUntarget.js differ diff --git a/legacy/.vimtmp/%mnt%data%Projects%Archive%Vue%flow-model-management%components%Footer.vue b/legacy/.vimtmp/%mnt%data%Projects%Archive%Vue%flow-model-management%components%Footer.vue new file mode 100644 index 0000000..7cb7476 Binary files /dev/null and b/legacy/.vimtmp/%mnt%data%Projects%Archive%Vue%flow-model-management%components%Footer.vue differ diff --git a/legacy/.vimtmp/%mnt%data%Projects%gsap%assets%css%style.css b/legacy/.vimtmp/%mnt%data%Projects%gsap%assets%css%style.css new file mode 100644 index 0000000..33e3357 Binary files /dev/null and b/legacy/.vimtmp/%mnt%data%Projects%gsap%assets%css%style.css differ diff --git a/legacy/.vimtmp/%mnt%data%Projects%gsap%index.html b/legacy/.vimtmp/%mnt%data%Projects%gsap%index.html new file mode 100644 index 0000000..4d4b005 Binary files /dev/null and b/legacy/.vimtmp/%mnt%data%Projects%gsap%index.html differ diff --git a/legacy/.vimtmp/%mnt%data%Projects%liquid-image%assets%css%style.css b/legacy/.vimtmp/%mnt%data%Projects%liquid-image%assets%css%style.css new file mode 100644 index 0000000..54c83a1 Binary files /dev/null and b/legacy/.vimtmp/%mnt%data%Projects%liquid-image%assets%css%style.css differ diff --git a/legacy/.vimtmp/%mnt%data%Projects%liquid-image%index.html b/legacy/.vimtmp/%mnt%data%Projects%liquid-image%index.html new file mode 100644 index 0000000..88c6a8f Binary files /dev/null and b/legacy/.vimtmp/%mnt%data%Projects%liquid-image%index.html differ diff --git a/legacy/.vimtmp/%mnt%data%Projects%scrape-test%pages%page-scrape.sh b/legacy/.vimtmp/%mnt%data%Projects%scrape-test%pages%page-scrape.sh new file mode 100644 index 0000000..76f3cd8 Binary files /dev/null and b/legacy/.vimtmp/%mnt%data%Projects%scrape-test%pages%page-scrape.sh differ diff --git a/legacy/.vimtmp/%mnt%data%Projects%woo-shop%colors.scss b/legacy/.vimtmp/%mnt%data%Projects%woo-shop%colors.scss new file mode 100644 index 0000000..6cca174 Binary files /dev/null and b/legacy/.vimtmp/%mnt%data%Projects%woo-shop%colors.scss differ diff --git a/legacy/.vimtmp/%mnt%data%Projects%woo-shop%colors.txt b/legacy/.vimtmp/%mnt%data%Projects%woo-shop%colors.txt new file mode 100644 index 0000000..418d136 Binary files /dev/null and b/legacy/.vimtmp/%mnt%data%Projects%woo-shop%colors.txt differ diff --git a/legacy/.vimtmp/%mnt%data%Shared%gsap%assets%css%style.css b/legacy/.vimtmp/%mnt%data%Shared%gsap%assets%css%style.css new file mode 100644 index 0000000..11abec0 Binary files /dev/null and b/legacy/.vimtmp/%mnt%data%Shared%gsap%assets%css%style.css differ diff --git a/legacy/.vimtmp/%mnt%data%Shared%gsap%assets%js%index.js b/legacy/.vimtmp/%mnt%data%Shared%gsap%assets%js%index.js new file mode 100644 index 0000000..711a537 Binary files /dev/null and b/legacy/.vimtmp/%mnt%data%Shared%gsap%assets%js%index.js differ diff --git a/legacy/.vimtmp/%mnt%data%Shared%gsap%index.html b/legacy/.vimtmp/%mnt%data%Shared%gsap%index.html new file mode 100644 index 0000000..afc380c Binary files /dev/null and b/legacy/.vimtmp/%mnt%data%Shared%gsap%index.html differ diff --git a/legacy/.vimtmp/%mnt%data%borg-data.sh b/legacy/.vimtmp/%mnt%data%borg-data.sh new file mode 100644 index 0000000..28662c9 Binary files /dev/null and b/legacy/.vimtmp/%mnt%data%borg-data.sh differ diff --git a/legacy/.vimtmp/%mnt%int_data%borg-int_data.sh b/legacy/.vimtmp/%mnt%int_data%borg-int_data.sh new file mode 100644 index 0000000..5f43446 Binary files /dev/null and b/legacy/.vimtmp/%mnt%int_data%borg-int_data.sh differ diff --git a/legacy/.vimtmp/%mnt%int_data%y%borg-int_data.sh b/legacy/.vimtmp/%mnt%int_data%y%borg-int_data.sh new file mode 100644 index 0000000..04b24f0 Binary files /dev/null and b/legacy/.vimtmp/%mnt%int_data%y%borg-int_data.sh differ diff --git a/legacy/.vimtmp/%mnt%int_data%y%fb%corkglamourphotography.com%README.txt b/legacy/.vimtmp/%mnt%int_data%y%fb%corkglamourphotography.com%README.txt new file mode 100644 index 0000000..76d5ad1 Binary files /dev/null and b/legacy/.vimtmp/%mnt%int_data%y%fb%corkglamourphotography.com%README.txt differ diff --git a/legacy/.vimtmp/%mnt%int_data%y%fb%corkglamourphotography.com%taracantfly.666%urls.txt b/legacy/.vimtmp/%mnt%int_data%y%fb%corkglamourphotography.com%taracantfly.666%urls.txt new file mode 100644 index 0000000..775939d Binary files /dev/null and b/legacy/.vimtmp/%mnt%int_data%y%fb%corkglamourphotography.com%taracantfly.666%urls.txt differ diff --git a/legacy/.vimtmp/%mnt%int_data%y%fb%corkglamourphotography.com%urls.txt b/legacy/.vimtmp/%mnt%int_data%y%fb%corkglamourphotography.com%urls.txt new file mode 100644 index 0000000..7b419f3 Binary files /dev/null and b/legacy/.vimtmp/%mnt%int_data%y%fb%corkglamourphotography.com%urls.txt differ diff --git a/legacy/.vimtmp/%mnt%int_data%y%vid%youtube%[ElizabethHunny xox]%batch.txt b/legacy/.vimtmp/%mnt%int_data%y%vid%youtube%[ElizabethHunny xox]%batch.txt new file mode 100644 index 0000000..803dd67 Binary files /dev/null and b/legacy/.vimtmp/%mnt%int_data%y%vid%youtube%[ElizabethHunny xox]%batch.txt differ diff --git a/legacy/.vimtmp/%mnt%int_data%y%vid%youtube%[Paradise Lifestyle]%batch.txt b/legacy/.vimtmp/%mnt%int_data%y%vid%youtube%[Paradise Lifestyle]%batch.txt new file mode 100644 index 0000000..7bc7d1d Binary files /dev/null and b/legacy/.vimtmp/%mnt%int_data%y%vid%youtube%[Paradise Lifestyle]%batch.txt differ diff --git a/legacy/.vimtmp/%mnt%media%Downloads%Reddit%reddit-rmd%scrape%Melli9494%URLS.txt b/legacy/.vimtmp/%mnt%media%Downloads%Reddit%reddit-rmd%scrape%Melli9494%URLS.txt new file mode 100644 index 0000000..a98cd13 Binary files /dev/null and b/legacy/.vimtmp/%mnt%media%Downloads%Reddit%reddit-rmd%scrape%Melli9494%URLS.txt differ diff --git a/legacy/.vimtmp/%mnt%media%Downloads%shared%content-marketing%sophie-mcmanus-informal-list-of-words-phrases-to-cut.txt b/legacy/.vimtmp/%mnt%media%Downloads%shared%content-marketing%sophie-mcmanus-informal-list-of-words-phrases-to-cut.txt new file mode 100644 index 0000000..3ee572f Binary files /dev/null and b/legacy/.vimtmp/%mnt%media%Downloads%shared%content-marketing%sophie-mcmanus-informal-list-of-words-phrases-to-cut.txt differ diff --git a/legacy/.vimtmp/%mnt%media%borg-media.sh b/legacy/.vimtmp/%mnt%media%borg-media.sh new file mode 100644 index 0000000..8d770b7 Binary files /dev/null and b/legacy/.vimtmp/%mnt%media%borg-media.sh differ diff --git a/legacy/.vimtmp/%mnt%tmp%concat.txt b/legacy/.vimtmp/%mnt%tmp%concat.txt new file mode 100644 index 0000000..0cc1430 Binary files /dev/null and b/legacy/.vimtmp/%mnt%tmp%concat.txt differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-1928794-9361472885314120634 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-1928794-9361472885314120634 new file mode 100644 index 0000000..77bc8ed Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-1928794-9361472885314120634 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-25603-7020150079089739856 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-25603-7020150079089739856 new file mode 100644 index 0000000..00b7e28 Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-25603-7020150079089739856 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-258650-3559313735703326834 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-258650-3559313735703326834 new file mode 100644 index 0000000..43235e8 Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-258650-3559313735703326834 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2596571-10259532027994072035 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2596571-10259532027994072035 new file mode 100644 index 0000000..ddeabbb Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2596571-10259532027994072035 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2596571-6019632256280208700 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2596571-6019632256280208700 new file mode 100644 index 0000000..fd626ea Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2596571-6019632256280208700 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2601136-1534446787125421447 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2601136-1534446787125421447 new file mode 100644 index 0000000..a5ec1cd Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2601136-1534446787125421447 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2601136-2397842591798128607 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2601136-2397842591798128607 new file mode 100644 index 0000000..8f18022 Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2601136-2397842591798128607 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2601136-7107508459314817954 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2601136-7107508459314817954 new file mode 100644 index 0000000..8d23619 Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2601136-7107508459314817954 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2604652-11439360266898220753 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2604652-11439360266898220753 new file mode 100644 index 0000000..7207f75 Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2604652-11439360266898220753 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2646622-14937989491277093925 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2646622-14937989491277093925 new file mode 100644 index 0000000..81b2d2d Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2646622-14937989491277093925 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2646622-15823002577444494667 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2646622-15823002577444494667 new file mode 100644 index 0000000..9761027 Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2646622-15823002577444494667 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2664540-3271596716388831522 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2664540-3271596716388831522 new file mode 100644 index 0000000..f804e3b Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2664540-3271596716388831522 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2666030-8664489359853632582 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2666030-8664489359853632582 new file mode 100644 index 0000000..6e13743 Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2666030-8664489359853632582 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2668344-14297569189191949597 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2668344-14297569189191949597 new file mode 100644 index 0000000..60f5d34 Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2668344-14297569189191949597 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2671635-15318477292958208604 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2671635-15318477292958208604 new file mode 100644 index 0000000..09d90f8 Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2671635-15318477292958208604 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2674553-17246295045610973265 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2674553-17246295045610973265 new file mode 100644 index 0000000..e1f47af Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2674553-17246295045610973265 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2674553-4816251718606554598 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2674553-4816251718606554598 new file mode 100644 index 0000000..5019e23 Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2674553-4816251718606554598 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2999167-5887649621571562466 b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2999167-5887649621571562466 new file mode 100644 index 0000000..37d5f09 Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Arch666-1000-2999167-5887649621571562466 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1154640-11714501149670487555 b/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1154640-11714501149670487555 new file mode 100644 index 0000000..f8408d3 Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1154640-11714501149670487555 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1154640-17002013444013056184 b/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1154640-17002013444013056184 new file mode 100644 index 0000000..ea1d64d Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1154640-17002013444013056184 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1154640-17327837825143658055 b/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1154640-17327837825143658055 new file mode 100644 index 0000000..1711aed Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1154640-17327837825143658055 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1235895-14530971095180617444 b/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1235895-14530971095180617444 new file mode 100644 index 0000000..f0bb5bf Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1235895-14530971095180617444 differ diff --git a/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1371637-8741560164198556297 b/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1371637-8741560164198556297 new file mode 100644 index 0000000..0cdbc1c Binary files /dev/null and b/legacy/.vimtmp/%tmp%neomutt-Patricia-1000-1371637-8741560164198556297 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-04pfc275 b/legacy/.vimtmp/%tmp%qutebrowser-editor-04pfc275 new file mode 100644 index 0000000..416502c Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-04pfc275 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-06y3ql0x b/legacy/.vimtmp/%tmp%qutebrowser-editor-06y3ql0x new file mode 100644 index 0000000..fb788ab Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-06y3ql0x differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-0nxm5hie b/legacy/.vimtmp/%tmp%qutebrowser-editor-0nxm5hie new file mode 100644 index 0000000..fb3ecee Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-0nxm5hie differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-153r_wu4 b/legacy/.vimtmp/%tmp%qutebrowser-editor-153r_wu4 new file mode 100644 index 0000000..ea223a9 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-153r_wu4 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-1an57lzk b/legacy/.vimtmp/%tmp%qutebrowser-editor-1an57lzk new file mode 100644 index 0000000..c957048 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-1an57lzk differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-1qdzz99t b/legacy/.vimtmp/%tmp%qutebrowser-editor-1qdzz99t new file mode 100644 index 0000000..8ffc765 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-1qdzz99t differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-1ydo63q9 b/legacy/.vimtmp/%tmp%qutebrowser-editor-1ydo63q9 new file mode 100644 index 0000000..fc202a1 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-1ydo63q9 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-21jfd77o b/legacy/.vimtmp/%tmp%qutebrowser-editor-21jfd77o new file mode 100644 index 0000000..03d5e28 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-21jfd77o differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-289boz1d b/legacy/.vimtmp/%tmp%qutebrowser-editor-289boz1d new file mode 100644 index 0000000..ae8ef29 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-289boz1d differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-38ad5650 b/legacy/.vimtmp/%tmp%qutebrowser-editor-38ad5650 new file mode 100644 index 0000000..c761817 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-38ad5650 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-505ajy2w b/legacy/.vimtmp/%tmp%qutebrowser-editor-505ajy2w new file mode 100644 index 0000000..c6a8ac3 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-505ajy2w differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-5q2q4tas b/legacy/.vimtmp/%tmp%qutebrowser-editor-5q2q4tas new file mode 100644 index 0000000..7c30297 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-5q2q4tas differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-65l_kc6n b/legacy/.vimtmp/%tmp%qutebrowser-editor-65l_kc6n new file mode 100644 index 0000000..e9d89e8 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-65l_kc6n differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-6fxommk0 b/legacy/.vimtmp/%tmp%qutebrowser-editor-6fxommk0 new file mode 100644 index 0000000..43df61e Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-6fxommk0 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-6gre3a0b b/legacy/.vimtmp/%tmp%qutebrowser-editor-6gre3a0b new file mode 100644 index 0000000..a5e17b9 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-6gre3a0b differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-708x3f34 b/legacy/.vimtmp/%tmp%qutebrowser-editor-708x3f34 new file mode 100644 index 0000000..174bc17 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-708x3f34 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-89ker7rp b/legacy/.vimtmp/%tmp%qutebrowser-editor-89ker7rp new file mode 100644 index 0000000..8e253f5 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-89ker7rp differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-8bk9tjme b/legacy/.vimtmp/%tmp%qutebrowser-editor-8bk9tjme new file mode 100644 index 0000000..7c25b80 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-8bk9tjme differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-8te9scrj b/legacy/.vimtmp/%tmp%qutebrowser-editor-8te9scrj new file mode 100644 index 0000000..8076134 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-8te9scrj differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-8woxzdtk b/legacy/.vimtmp/%tmp%qutebrowser-editor-8woxzdtk new file mode 100644 index 0000000..98bed62 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-8woxzdtk differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-93guh3ch b/legacy/.vimtmp/%tmp%qutebrowser-editor-93guh3ch new file mode 100644 index 0000000..cc97055 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-93guh3ch differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-_41zvjca b/legacy/.vimtmp/%tmp%qutebrowser-editor-_41zvjca new file mode 100644 index 0000000..6ee8520 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-_41zvjca differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-_57q6nkm b/legacy/.vimtmp/%tmp%qutebrowser-editor-_57q6nkm new file mode 100644 index 0000000..03da5bb Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-_57q6nkm differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-_l3s6jfv b/legacy/.vimtmp/%tmp%qutebrowser-editor-_l3s6jfv new file mode 100644 index 0000000..69ce945 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-_l3s6jfv differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-_o_6s3tz b/legacy/.vimtmp/%tmp%qutebrowser-editor-_o_6s3tz new file mode 100644 index 0000000..7400619 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-_o_6s3tz differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-_vrdfro8 b/legacy/.vimtmp/%tmp%qutebrowser-editor-_vrdfro8 new file mode 100644 index 0000000..914054b Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-_vrdfro8 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-aasfseep b/legacy/.vimtmp/%tmp%qutebrowser-editor-aasfseep new file mode 100644 index 0000000..ceb67d8 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-aasfseep differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-aj407hfz b/legacy/.vimtmp/%tmp%qutebrowser-editor-aj407hfz new file mode 100644 index 0000000..86160f3 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-aj407hfz differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-aqrpzylu b/legacy/.vimtmp/%tmp%qutebrowser-editor-aqrpzylu new file mode 100644 index 0000000..5009a38 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-aqrpzylu differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-ciosfgfz b/legacy/.vimtmp/%tmp%qutebrowser-editor-ciosfgfz new file mode 100644 index 0000000..395847b Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-ciosfgfz differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-e61n0dyc b/legacy/.vimtmp/%tmp%qutebrowser-editor-e61n0dyc new file mode 100644 index 0000000..202ffe1 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-e61n0dyc differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-e776ajzh b/legacy/.vimtmp/%tmp%qutebrowser-editor-e776ajzh new file mode 100644 index 0000000..10a7393 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-e776ajzh differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-e_c_3jc4 b/legacy/.vimtmp/%tmp%qutebrowser-editor-e_c_3jc4 new file mode 100644 index 0000000..5460ded Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-e_c_3jc4 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-edefinie b/legacy/.vimtmp/%tmp%qutebrowser-editor-edefinie new file mode 100644 index 0000000..dc37687 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-edefinie differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-ehb8is3s b/legacy/.vimtmp/%tmp%qutebrowser-editor-ehb8is3s new file mode 100644 index 0000000..4a5d248 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-ehb8is3s differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-fu4qluc9 b/legacy/.vimtmp/%tmp%qutebrowser-editor-fu4qluc9 new file mode 100644 index 0000000..842100d Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-fu4qluc9 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-gj7_glg5 b/legacy/.vimtmp/%tmp%qutebrowser-editor-gj7_glg5 new file mode 100644 index 0000000..73548be Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-gj7_glg5 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-jsdxy6nv b/legacy/.vimtmp/%tmp%qutebrowser-editor-jsdxy6nv new file mode 100644 index 0000000..b1be44f Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-jsdxy6nv differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-jxf80cow b/legacy/.vimtmp/%tmp%qutebrowser-editor-jxf80cow new file mode 100644 index 0000000..1e16787 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-jxf80cow differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-kzy7xcr5 b/legacy/.vimtmp/%tmp%qutebrowser-editor-kzy7xcr5 new file mode 100644 index 0000000..c5dd90e Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-kzy7xcr5 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-maaewbph b/legacy/.vimtmp/%tmp%qutebrowser-editor-maaewbph new file mode 100644 index 0000000..e564445 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-maaewbph differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-n5dvt8tn b/legacy/.vimtmp/%tmp%qutebrowser-editor-n5dvt8tn new file mode 100644 index 0000000..dfe4a5a Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-n5dvt8tn differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-nf1miuwy b/legacy/.vimtmp/%tmp%qutebrowser-editor-nf1miuwy new file mode 100644 index 0000000..d363137 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-nf1miuwy differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-omb7u2ia b/legacy/.vimtmp/%tmp%qutebrowser-editor-omb7u2ia new file mode 100644 index 0000000..6b6e4f7 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-omb7u2ia differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-py310g94 b/legacy/.vimtmp/%tmp%qutebrowser-editor-py310g94 new file mode 100644 index 0000000..48b0cf2 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-py310g94 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-saarf0wt b/legacy/.vimtmp/%tmp%qutebrowser-editor-saarf0wt new file mode 100644 index 0000000..f38fdd9 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-saarf0wt differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-sqds7nfg b/legacy/.vimtmp/%tmp%qutebrowser-editor-sqds7nfg new file mode 100644 index 0000000..21fe419 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-sqds7nfg differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-squ8uyq7 b/legacy/.vimtmp/%tmp%qutebrowser-editor-squ8uyq7 new file mode 100644 index 0000000..045dac2 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-squ8uyq7 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-sry2u514 b/legacy/.vimtmp/%tmp%qutebrowser-editor-sry2u514 new file mode 100644 index 0000000..f35dfaa Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-sry2u514 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-subqc63o b/legacy/.vimtmp/%tmp%qutebrowser-editor-subqc63o new file mode 100644 index 0000000..fb4ab59 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-subqc63o differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-sz6qvqe3 b/legacy/.vimtmp/%tmp%qutebrowser-editor-sz6qvqe3 new file mode 100644 index 0000000..7b03d3e Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-sz6qvqe3 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-t5x0gn99 b/legacy/.vimtmp/%tmp%qutebrowser-editor-t5x0gn99 new file mode 100644 index 0000000..0f72d17 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-t5x0gn99 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-td489h8t b/legacy/.vimtmp/%tmp%qutebrowser-editor-td489h8t new file mode 100644 index 0000000..02b5a4e Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-td489h8t differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-teyvepd1 b/legacy/.vimtmp/%tmp%qutebrowser-editor-teyvepd1 new file mode 100644 index 0000000..dae5988 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-teyvepd1 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-tf3xkib8 b/legacy/.vimtmp/%tmp%qutebrowser-editor-tf3xkib8 new file mode 100644 index 0000000..90ad00c Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-tf3xkib8 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-tp9s5hzu b/legacy/.vimtmp/%tmp%qutebrowser-editor-tp9s5hzu new file mode 100644 index 0000000..a50cda5 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-tp9s5hzu differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-tua0_4wz b/legacy/.vimtmp/%tmp%qutebrowser-editor-tua0_4wz new file mode 100644 index 0000000..3c2d655 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-tua0_4wz differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-ulbys0gi b/legacy/.vimtmp/%tmp%qutebrowser-editor-ulbys0gi new file mode 100644 index 0000000..6170ec1 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-ulbys0gi differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-vbhyzvyl b/legacy/.vimtmp/%tmp%qutebrowser-editor-vbhyzvyl new file mode 100644 index 0000000..6cda234 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-vbhyzvyl differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-vxlbwsit b/legacy/.vimtmp/%tmp%qutebrowser-editor-vxlbwsit new file mode 100644 index 0000000..c8ef8ea Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-vxlbwsit differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-vymxj0hi b/legacy/.vimtmp/%tmp%qutebrowser-editor-vymxj0hi new file mode 100644 index 0000000..fb508d4 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-vymxj0hi differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-wopva13g b/legacy/.vimtmp/%tmp%qutebrowser-editor-wopva13g new file mode 100644 index 0000000..2337900 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-wopva13g differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-xh06vw_t b/legacy/.vimtmp/%tmp%qutebrowser-editor-xh06vw_t new file mode 100644 index 0000000..af8eb04 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-xh06vw_t differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-yneljjj1 b/legacy/.vimtmp/%tmp%qutebrowser-editor-yneljjj1 new file mode 100644 index 0000000..1e56e0a Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-yneljjj1 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-yq3yyohr b/legacy/.vimtmp/%tmp%qutebrowser-editor-yq3yyohr new file mode 100644 index 0000000..d72921f Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-yq3yyohr differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-z6_ek5v0 b/legacy/.vimtmp/%tmp%qutebrowser-editor-z6_ek5v0 new file mode 100644 index 0000000..caab4d7 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-z6_ek5v0 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-za1gy1j4 b/legacy/.vimtmp/%tmp%qutebrowser-editor-za1gy1j4 new file mode 100644 index 0000000..58da465 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-za1gy1j4 differ diff --git a/legacy/.vimtmp/%tmp%qutebrowser-editor-zvjhyfv7 b/legacy/.vimtmp/%tmp%qutebrowser-editor-zvjhyfv7 new file mode 100644 index 0000000..02f1bb8 Binary files /dev/null and b/legacy/.vimtmp/%tmp%qutebrowser-editor-zvjhyfv7 differ diff --git a/legacy/.vimtmp/%tmp%tmp1144_390 b/legacy/.vimtmp/%tmp%tmp1144_390 new file mode 100644 index 0000000..60e26c2 Binary files /dev/null and b/legacy/.vimtmp/%tmp%tmp1144_390 differ diff --git a/legacy/.vimtmp/%tmp%tmp66ndxb91 b/legacy/.vimtmp/%tmp%tmp66ndxb91 new file mode 100644 index 0000000..66a9d2e Binary files /dev/null and b/legacy/.vimtmp/%tmp%tmp66ndxb91 differ diff --git a/legacy/.vimtmp/%tmp%tmph0t6kdoq b/legacy/.vimtmp/%tmp%tmph0t6kdoq new file mode 100644 index 0000000..0f40991 Binary files /dev/null and b/legacy/.vimtmp/%tmp%tmph0t6kdoq differ diff --git a/legacy/.vimtmp/%tmp%tmphqryfyds b/legacy/.vimtmp/%tmp%tmphqryfyds new file mode 100644 index 0000000..3c84e3c Binary files /dev/null and b/legacy/.vimtmp/%tmp%tmphqryfyds differ diff --git a/legacy/.vimtmp/%tmp%tmpnwomdy9d b/legacy/.vimtmp/%tmp%tmpnwomdy9d new file mode 100644 index 0000000..f5ef433 Binary files /dev/null and b/legacy/.vimtmp/%tmp%tmpnwomdy9d differ diff --git a/legacy/.vimtmp/%tmp%tmpvyqu5sa9 b/legacy/.vimtmp/%tmp%tmpvyqu5sa9 new file mode 100644 index 0000000..b1276ce Binary files /dev/null and b/legacy/.vimtmp/%tmp%tmpvyqu5sa9 differ diff --git a/legacy/.vimtmp/%usr%local%bin%pve b/legacy/.vimtmp/%usr%local%bin%pve new file mode 100644 index 0000000..6255460 Binary files /dev/null and b/legacy/.vimtmp/%usr%local%bin%pve differ diff --git a/legacy/.vimtmp/%usr%local%bin%terminal b/legacy/.vimtmp/%usr%local%bin%terminal new file mode 100644 index 0000000..5057b2e Binary files /dev/null and b/legacy/.vimtmp/%usr%local%bin%terminal differ diff --git a/legacy/.vimtmp/%usr%local%src%dwm%.git%COMMIT_EDITMSG b/legacy/.vimtmp/%usr%local%src%dwm%.git%COMMIT_EDITMSG new file mode 100644 index 0000000..c15efe4 Binary files /dev/null and b/legacy/.vimtmp/%usr%local%src%dwm%.git%COMMIT_EDITMSG differ diff --git a/legacy/.vimtmp/%usr%local%src%dwm%README b/legacy/.vimtmp/%usr%local%src%dwm%README new file mode 100644 index 0000000..f8bf718 Binary files /dev/null and b/legacy/.vimtmp/%usr%local%src%dwm%README differ diff --git a/legacy/.vimtmp/%usr%local%src%dwm%config.h b/legacy/.vimtmp/%usr%local%src%dwm%config.h new file mode 100644 index 0000000..d81517d Binary files /dev/null and b/legacy/.vimtmp/%usr%local%src%dwm%config.h differ diff --git a/legacy/.vimtmp/%usr%local%src%dwm%dwm.c b/legacy/.vimtmp/%usr%local%src%dwm%dwm.c new file mode 100644 index 0000000..627dbc9 Binary files /dev/null and b/legacy/.vimtmp/%usr%local%src%dwm%dwm.c differ diff --git a/legacy/.vimtmp/%usr%local%src%st%.gitignore b/legacy/.vimtmp/%usr%local%src%st%.gitignore new file mode 100644 index 0000000..8edcb15 Binary files /dev/null and b/legacy/.vimtmp/%usr%local%src%st%.gitignore differ diff --git a/legacy/.vimtmp/%usr%local%src%st%config.h b/legacy/.vimtmp/%usr%local%src%st%config.h new file mode 100644 index 0000000..2955a33 Binary files /dev/null and b/legacy/.vimtmp/%usr%local%src%st%config.h differ diff --git a/legacy/.vimtmp/%usr%local%src%st%st-pb.diff b/legacy/.vimtmp/%usr%local%src%st%st-pb.diff new file mode 100644 index 0000000..5b33536 Binary files /dev/null and b/legacy/.vimtmp/%usr%local%src%st%st-pb.diff differ diff --git a/legacy/.vimtmp/%usr%local%src%st%st.info b/legacy/.vimtmp/%usr%local%src%st%st.info new file mode 100644 index 0000000..47ec4c8 Binary files /dev/null and b/legacy/.vimtmp/%usr%local%src%st%st.info differ diff --git a/legacy/.vimtmp/%usr%local%src%surf%.gitignore b/legacy/.vimtmp/%usr%local%src%surf%.gitignore new file mode 100644 index 0000000..9e436c5 Binary files /dev/null and b/legacy/.vimtmp/%usr%local%src%surf%.gitignore differ diff --git a/.vimtmp/.gitkeep b/legacy/.vimtmp/.gitkeep similarity index 100% rename from .vimtmp/.gitkeep rename to legacy/.vimtmp/.gitkeep diff --git a/legacy/README.md b/legacy/README.md new file mode 100644 index 0000000..99a268b --- /dev/null +++ b/legacy/README.md @@ -0,0 +1,19 @@ +# Legacy Neovim Config Archive + +This folder contains the previous Neovim/Vimscript configuration and related files, archived during Phase 1 of the migration. Nothing here should be modified; use only for reference while rebuilding the new Lua-based setup. + +Archived on: 2025-12-06 + +## Contents archived +- Directories: `after/`, `autoload/`, `bundle/`, `colors/`, `ftdetect/`, `ftplugin/`, `lua/`, `tmpdir/`, `.vimtmp/` +- Files: `init.auto-window.vim`, `init.commands.vim`, `init.fold-text.vim`, `init.full.vim`, `init.plugins.vim`, `init.tabline.vim`, `init.vim`, `init.vscode.vim`, `Session.ts.vim`, `Session.vim`, `postcss.config.js`, `.netrwhist`, `.tags` + +## Kept in place (not archived) +- `undodir/`, `spell/`, `view/`, `UltiSnips/`, `templates/` +- Repo metadata: `.git/`, `.gitignore` +- Migration docs: `AGENTS.md`, `MIGRATION_PLAN.md`, `neovim-migration-guide.md` + +## Notes +- netrw history (`.netrwhist`) was archived since Neo-tree will replace netrw usage. +- Colors and Vimscript `after/` settings were archived to avoid runtimepath collisions with the new config. +- The old `lua/` directory was archived to ensure a clean rebuild of the Lua modules using the new structure and lazy.nvim. diff --git a/Session.ts.vim b/legacy/Session.ts.vim similarity index 100% rename from Session.ts.vim rename to legacy/Session.ts.vim diff --git a/after/ftplugin/help.vim b/legacy/after/ftplugin/help.vim similarity index 100% rename from after/ftplugin/help.vim rename to legacy/after/ftplugin/help.vim diff --git a/after/ftplugin/html.vim b/legacy/after/ftplugin/html.vim similarity index 100% rename from after/ftplugin/html.vim rename to legacy/after/ftplugin/html.vim diff --git a/after/ftplugin/javascript.vim b/legacy/after/ftplugin/javascript.vim similarity index 100% rename from after/ftplugin/javascript.vim rename to legacy/after/ftplugin/javascript.vim diff --git a/after/ftplugin/netrw.vim b/legacy/after/ftplugin/netrw.vim similarity index 100% rename from after/ftplugin/netrw.vim rename to legacy/after/ftplugin/netrw.vim diff --git a/after/ftplugin/php.vim b/legacy/after/ftplugin/php.vim similarity index 100% rename from after/ftplugin/php.vim rename to legacy/after/ftplugin/php.vim diff --git a/after/ftplugin/python.vim b/legacy/after/ftplugin/python.vim similarity index 100% rename from after/ftplugin/python.vim rename to legacy/after/ftplugin/python.vim diff --git a/after/ftplugin/qf.vim b/legacy/after/ftplugin/qf.vim similarity index 100% rename from after/ftplugin/qf.vim rename to legacy/after/ftplugin/qf.vim diff --git a/after/ftplugin/sass.vim b/legacy/after/ftplugin/sass.vim similarity index 100% rename from after/ftplugin/sass.vim rename to legacy/after/ftplugin/sass.vim diff --git a/after/ftplugin/vim.vim b/legacy/after/ftplugin/vim.vim similarity index 100% rename from after/ftplugin/vim.vim rename to legacy/after/ftplugin/vim.vim diff --git a/after/indent/php.vim b/legacy/after/indent/php.vim similarity index 100% rename from after/indent/php.vim rename to legacy/after/indent/php.vim diff --git a/after/queries/css/highlights.scm b/legacy/after/queries/css/highlights.scm similarity index 100% rename from after/queries/css/highlights.scm rename to legacy/after/queries/css/highlights.scm diff --git a/after/queries/ecma/highlights.scm b/legacy/after/queries/ecma/highlights.scm similarity index 100% rename from after/queries/ecma/highlights.scm rename to legacy/after/queries/ecma/highlights.scm diff --git a/after/queries/html/highlights.scm b/legacy/after/queries/html/highlights.scm similarity index 100% rename from after/queries/html/highlights.scm rename to legacy/after/queries/html/highlights.scm diff --git a/colors/README.txt b/legacy/colors/README.txt similarity index 100% rename from colors/README.txt rename to legacy/colors/README.txt diff --git a/ftdetect/astro.vim b/legacy/ftdetect/astro.vim similarity index 100% rename from ftdetect/astro.vim rename to legacy/ftdetect/astro.vim diff --git a/ftplugin/css.vim b/legacy/ftplugin/css.vim similarity index 100% rename from ftplugin/css.vim rename to legacy/ftplugin/css.vim diff --git a/ftplugin/eruby.vim b/legacy/ftplugin/eruby.vim similarity index 100% rename from ftplugin/eruby.vim rename to legacy/ftplugin/eruby.vim diff --git a/ftplugin/fish.vim b/legacy/ftplugin/fish.vim similarity index 100% rename from ftplugin/fish.vim rename to legacy/ftplugin/fish.vim diff --git a/ftplugin/help.vim b/legacy/ftplugin/help.vim similarity index 100% rename from ftplugin/help.vim rename to legacy/ftplugin/help.vim diff --git a/ftplugin/html.vim b/legacy/ftplugin/html.vim similarity index 100% rename from ftplugin/html.vim rename to legacy/ftplugin/html.vim diff --git a/ftplugin/javascript.vim b/legacy/ftplugin/javascript.vim similarity index 100% rename from ftplugin/javascript.vim rename to legacy/ftplugin/javascript.vim diff --git a/ftplugin/markdown.vim b/legacy/ftplugin/markdown.vim similarity index 100% rename from ftplugin/markdown.vim rename to legacy/ftplugin/markdown.vim diff --git a/ftplugin/octobercms.vim b/legacy/ftplugin/octobercms.vim similarity index 100% rename from ftplugin/octobercms.vim rename to legacy/ftplugin/octobercms.vim diff --git a/ftplugin/ruby.vim b/legacy/ftplugin/ruby.vim similarity index 100% rename from ftplugin/ruby.vim rename to legacy/ftplugin/ruby.vim diff --git a/ftplugin/sass.vim b/legacy/ftplugin/sass.vim similarity index 100% rename from ftplugin/sass.vim rename to legacy/ftplugin/sass.vim diff --git a/ftplugin/sh.vim b/legacy/ftplugin/sh.vim similarity index 100% rename from ftplugin/sh.vim rename to legacy/ftplugin/sh.vim diff --git a/ftplugin/vim.vim b/legacy/ftplugin/vim.vim similarity index 100% rename from ftplugin/vim.vim rename to legacy/ftplugin/vim.vim diff --git a/ftplugin/vue.vim b/legacy/ftplugin/vue.vim similarity index 100% rename from ftplugin/vue.vim rename to legacy/ftplugin/vue.vim diff --git a/init.auto-window.vim b/legacy/init.auto-window.vim similarity index 100% rename from init.auto-window.vim rename to legacy/init.auto-window.vim diff --git a/init.commands.vim b/legacy/init.commands.vim similarity index 100% rename from init.commands.vim rename to legacy/init.commands.vim diff --git a/init.fold-text.vim b/legacy/init.fold-text.vim similarity index 100% rename from init.fold-text.vim rename to legacy/init.fold-text.vim diff --git a/init.full.vim b/legacy/init.full.vim similarity index 100% rename from init.full.vim rename to legacy/init.full.vim diff --git a/init.plugins.vim b/legacy/init.plugins.vim similarity index 100% rename from init.plugins.vim rename to legacy/init.plugins.vim diff --git a/init.tabline.vim b/legacy/init.tabline.vim similarity index 100% rename from init.tabline.vim rename to legacy/init.tabline.vim diff --git a/init.vim b/legacy/init.vim similarity index 100% rename from init.vim rename to legacy/init.vim diff --git a/init.vscode.vim b/legacy/init.vscode.vim similarity index 100% rename from init.vscode.vim rename to legacy/init.vscode.vim diff --git a/lua/init-cmp.lua b/legacy/lua/init-cmp.lua similarity index 100% rename from lua/init-cmp.lua rename to legacy/lua/init-cmp.lua diff --git a/lua/init-indent-blankline.lua b/legacy/lua/init-indent-blankline.lua similarity index 100% rename from lua/init-indent-blankline.lua rename to legacy/lua/init-indent-blankline.lua diff --git a/lua/init-lsp.lua b/legacy/lua/init-lsp.lua similarity index 100% rename from lua/init-lsp.lua rename to legacy/lua/init-lsp.lua diff --git a/lua/init-plugins.lua b/legacy/lua/init-plugins.lua similarity index 100% rename from lua/init-plugins.lua rename to legacy/lua/init-plugins.lua diff --git a/lua/init-treesitter.lua b/legacy/lua/init-treesitter.lua similarity index 100% rename from lua/init-treesitter.lua rename to legacy/lua/init-treesitter.lua diff --git a/lua/init.lua b/legacy/lua/init.lua similarity index 100% rename from lua/init.lua rename to legacy/lua/init.lua diff --git a/postcss.config.js b/legacy/postcss.config.js similarity index 100% rename from postcss.config.js rename to legacy/postcss.config.js diff --git a/templates/template.css b/legacy/templates/template.css similarity index 100% rename from templates/template.css rename to legacy/templates/template.css diff --git a/templates/template.html b/legacy/templates/template.html similarity index 100% rename from templates/template.html rename to legacy/templates/template.html diff --git a/legacy/templates/template.sh b/legacy/templates/template.sh new file mode 100644 index 0000000..1a24852 --- /dev/null +++ b/legacy/templates/template.sh @@ -0,0 +1 @@ +#!/bin/sh diff --git a/neovim-migration-guide.md b/neovim-migration-guide.md index 6bf2a70..bd5b1b8 100644 --- a/neovim-migration-guide.md +++ b/neovim-migration-guide.md @@ -16,7 +16,7 @@ This document describes my goals, constraints, preferences, and what I expect fr * Support my workflow: **multiple tabs, each with its own Neo-tree instance**, for working with WordPress plugin development and referencing external codebases (WooCommerce, WordPress core, etc). * Use LSP, Treesitter, telescope, and modern UX plugins. * Integrate GitHub Copilot into completion. -* Preserve certain useful behaviours from my old config (see below). +* Preserve colour scheme used but modernise it if needed. ---