├── .gitattributes ├── .gitignore ├── README.md ├── UNLICENCE ├── arch └── mirrorlist ├── script ├── bootstrap.sh ├── install-packages.sh └── stow.sh └── stowed ├── .clojure ├── .gitignore ├── deps.edn └── tools │ ├── nrebel.edn │ └── tools.edn ├── .config ├── fish │ ├── .gitignore │ ├── completions │ │ └── mise.fish │ ├── config.fish │ ├── fish_plugins │ └── functions │ │ ├── fish_user_key_bindings.fish │ │ ├── gs.fish │ │ ├── initialise_ssh_agent.fish │ │ ├── mise-eval.fish │ │ └── sync.fish ├── ghostty │ └── config ├── kitty │ └── kitty.conf ├── lazygit │ ├── .gitignore │ └── config.yml ├── mako │ └── config ├── nvim │ ├── .gitattributes │ ├── .nfnl.fnl │ ├── README.md │ ├── flsproject.fnl │ ├── flsproject.lua │ ├── fnl │ │ ├── config │ │ │ └── macros.fnl │ │ └── plugins │ │ │ ├── ai.fnl │ │ │ ├── autopairs.fnl │ │ │ ├── cmp.fnl │ │ │ ├── colorizer.fnl │ │ │ ├── conjure.fnl │ │ │ ├── fennel.fnl │ │ │ ├── flash.fnl │ │ │ ├── git.fnl │ │ │ ├── hy.fnl │ │ │ ├── icons.fnl │ │ │ ├── lsp.fnl │ │ │ ├── lualine.fnl │ │ │ ├── markdown.fnl │ │ │ ├── nfnl.fnl │ │ │ ├── oil.fnl │ │ │ ├── onedark.fnl │ │ │ ├── paredit.fnl │ │ │ ├── snacks.fnl │ │ │ ├── surround.fnl │ │ │ ├── tpope.fnl │ │ │ ├── tree-sitter.fnl │ │ │ ├── which-key.fnl │ │ │ └── whitespace.fnl │ ├── ftplugin │ │ ├── help.fnl │ │ └── help.lua │ ├── init.fnl │ ├── init.lua │ ├── lazy-lock.json │ ├── lsp │ │ ├── typedclojure.fnl │ │ └── typedclojure.lua │ └── lua │ │ ├── config │ │ └── lazy.lua │ │ └── plugins │ │ ├── ai.lua │ │ ├── autopairs.lua │ │ ├── cmp.lua │ │ ├── colorizer.lua │ │ ├── conjure.lua │ │ ├── fennel.lua │ │ ├── flash.lua │ │ ├── git.lua │ │ ├── hy.lua │ │ ├── icons.lua │ │ ├── lsp.lua │ │ ├── lualine.lua │ │ ├── markdown.lua │ │ ├── nfnl.lua │ │ ├── oil.lua │ │ ├── onedark.lua │ │ ├── paredit.lua │ │ ├── snacks.lua │ │ ├── surround.lua │ │ ├── tpope.lua │ │ ├── tree-sitter.lua │ │ ├── which-key.lua │ │ └── whitespace.lua ├── sway │ ├── config │ ├── config.d │ │ └── zoom.conf │ └── images │ │ └── trees.png └── waybar │ ├── config │ └── style.css ├── .gitconfig ├── .gitexcludes ├── .gnupg └── gpg-agent.conf └── .npmrc /.gitattributes: -------------------------------------------------------------------------------- 1 | stowed/.config/nvim/lua/**/*.lua linguist-generated 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | pkg-lists/active.nix 3 | stowed/.gnupg 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/UNLICENCE -------------------------------------------------------------------------------- /arch/mirrorlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/arch/mirrorlist -------------------------------------------------------------------------------- /script/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/script/bootstrap.sh -------------------------------------------------------------------------------- /script/install-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/script/install-packages.sh -------------------------------------------------------------------------------- /script/stow.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | stow --target="$HOME" stowed 4 | -------------------------------------------------------------------------------- /stowed/.clojure/.gitignore: -------------------------------------------------------------------------------- 1 | .cpcache/ 2 | -------------------------------------------------------------------------------- /stowed/.clojure/deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.clojure/deps.edn -------------------------------------------------------------------------------- /stowed/.clojure/tools/nrebel.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.clojure/tools/nrebel.edn -------------------------------------------------------------------------------- /stowed/.clojure/tools/tools.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.clojure/tools/tools.edn -------------------------------------------------------------------------------- /stowed/.config/fish/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/fish/.gitignore -------------------------------------------------------------------------------- /stowed/.config/fish/completions/mise.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/fish/completions/mise.fish -------------------------------------------------------------------------------- /stowed/.config/fish/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/fish/config.fish -------------------------------------------------------------------------------- /stowed/.config/fish/fish_plugins: -------------------------------------------------------------------------------- 1 | ilancosman/tide@v6 2 | -------------------------------------------------------------------------------- /stowed/.config/fish/functions/fish_user_key_bindings.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/fish/functions/fish_user_key_bindings.fish -------------------------------------------------------------------------------- /stowed/.config/fish/functions/gs.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/fish/functions/gs.fish -------------------------------------------------------------------------------- /stowed/.config/fish/functions/initialise_ssh_agent.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/fish/functions/initialise_ssh_agent.fish -------------------------------------------------------------------------------- /stowed/.config/fish/functions/mise-eval.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/fish/functions/mise-eval.fish -------------------------------------------------------------------------------- /stowed/.config/fish/functions/sync.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/fish/functions/sync.fish -------------------------------------------------------------------------------- /stowed/.config/ghostty/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/ghostty/config -------------------------------------------------------------------------------- /stowed/.config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /stowed/.config/lazygit/.gitignore: -------------------------------------------------------------------------------- 1 | state.yml 2 | -------------------------------------------------------------------------------- /stowed/.config/lazygit/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/lazygit/config.yml -------------------------------------------------------------------------------- /stowed/.config/mako/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/mako/config -------------------------------------------------------------------------------- /stowed/.config/nvim/.gitattributes: -------------------------------------------------------------------------------- 1 | lua/**/*.lua linguist-generated 2 | -------------------------------------------------------------------------------- /stowed/.config/nvim/.nfnl.fnl: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /stowed/.config/nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/README.md -------------------------------------------------------------------------------- /stowed/.config/nvim/flsproject.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/flsproject.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/flsproject.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/flsproject.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/config/macros.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/config/macros.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/ai.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/ai.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/autopairs.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/autopairs.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/cmp.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/cmp.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/colorizer.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/colorizer.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/conjure.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/conjure.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/fennel.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/fennel.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/flash.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/flash.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/git.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/git.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/hy.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/hy.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/icons.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/icons.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/lsp.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/lsp.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/lualine.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/lualine.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/markdown.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/markdown.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/nfnl.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/nfnl.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/oil.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/oil.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/onedark.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/onedark.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/paredit.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/paredit.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/snacks.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/snacks.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/surround.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/surround.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/tpope.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/tpope.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/tree-sitter.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/tree-sitter.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/which-key.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/which-key.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/fnl/plugins/whitespace.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/fnl/plugins/whitespace.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/ftplugin/help.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/ftplugin/help.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/ftplugin/help.lua: -------------------------------------------------------------------------------- 1 | -- [nfnl] ftplugin/help.fnl 2 | vim.bo.formatexpr = "" 3 | return nil 4 | -------------------------------------------------------------------------------- /stowed/.config/nvim/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/init.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/init.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lazy-lock.json -------------------------------------------------------------------------------- /stowed/.config/nvim/lsp/typedclojure.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lsp/typedclojure.fnl -------------------------------------------------------------------------------- /stowed/.config/nvim/lsp/typedclojure.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lsp/typedclojure.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/ai.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/ai.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/autopairs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/autopairs.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/cmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/cmp.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/colorizer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/colorizer.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/conjure.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/conjure.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/fennel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/fennel.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/flash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/flash.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/git.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/git.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/hy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/hy.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/icons.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/lsp.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/lualine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/lualine.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/markdown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/markdown.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/nfnl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/nfnl.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/oil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/oil.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/onedark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/onedark.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/paredit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/paredit.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/snacks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/snacks.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/surround.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/surround.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/tpope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/tpope.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/tree-sitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/tree-sitter.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/which-key.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/which-key.lua -------------------------------------------------------------------------------- /stowed/.config/nvim/lua/plugins/whitespace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/nvim/lua/plugins/whitespace.lua -------------------------------------------------------------------------------- /stowed/.config/sway/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/sway/config -------------------------------------------------------------------------------- /stowed/.config/sway/config.d/zoom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/sway/config.d/zoom.conf -------------------------------------------------------------------------------- /stowed/.config/sway/images/trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/sway/images/trees.png -------------------------------------------------------------------------------- /stowed/.config/waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/waybar/config -------------------------------------------------------------------------------- /stowed/.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.config/waybar/style.css -------------------------------------------------------------------------------- /stowed/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.gitconfig -------------------------------------------------------------------------------- /stowed/.gitexcludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.gitexcludes -------------------------------------------------------------------------------- /stowed/.gnupg/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Olical/dotfiles/HEAD/stowed/.gnupg/gpg-agent.conf -------------------------------------------------------------------------------- /stowed/.npmrc: -------------------------------------------------------------------------------- 1 | prefix = ~/.npm-data 2 | --------------------------------------------------------------------------------