Finally made the switch from alacritty to kitty. I have been thinking about this for a while. Both, fundamentally, serve my purposes just fine. Both are fast, customizable, gpu accelerated, and so on. Kitty feels a little faster on the input, but this should not provide major differences. One big difference, however, is now very apparent and I can feel it: Alacritty, on wayland, does not support any picture preview. It does not support sixel, and things like w3mimg or ueberzug are based on and require X11 to run. Kitty brings its own graphics display library and it seems both pretty stable and fast. I have not done much more with it than use it in things like vifm image previews but it should be much more stable than things like ueberzug, much faster than things like sixel. Time will tell. Switched other modules to make use of kitty instead of alacritty: vifm uses kitty previews, river spawns kitty instances, systemd units use kitty instances, waybar presents extra mouse-click interactions through kitty, and styler contains a processor to style kitty permanently. I would love to converge this all a bit more on the `$TERMINAL` env var, but this is unfortunately difficult for things like systemd and waybar. For waybar I currently see no real way except for a custom `ideal-terminal` script which just goes down the list of terminal emulators I want to run, depending on which is installed, since it does not read env vars, while for systemd it might be feasible to import user environment variables, but also connected to additional complexity and overhead which it does not seem worth for the currently two simple service units it affects. Also removed some obsolete sxhkd and sh settings from the move to wayland.
7.1 KiB
~/🌹
Note that the below screenshots still show the X configuration from v0.1. The current dotfiles are geared toward wayland for which the setup looks similar but not identical to the previews below.
What's in these dotfiles
- vim configuration for simple programming tasks (especially go/typescript/python/bash) and prose
- academic workflow tools, to allow quick citation, pdf compilation, and preview
- simple, efficient waybar with package update notification, and spotify (mpris) integration
- tmux session management through
tm
andtl
tools - tmux fuzzy-searching of terminal sessions to switch to with hot-key (
<C-A><C-s>
) in addition to normal session switching - system-wide color management (terminals, vim, qutebrowser, polybar, xresources) through
styler
command using base16 themes - quick theme switching by activating
styler
and fuzzy-searching themes with hot-key (default<Super>=<Shift>+S
) - many vim color-schemes with quick light/dark switching (
F8
) and individual theme switch (<Space>+F8
) - quick directory jumping using
z
, withfzf
integration fzf
-like integrations for bibtex citation, vim buffer management, most recently used switching, shell command history, and more
Quick-Start
The dotfiles use GNU stow
to link themselves in the home directory. You can clone this repository anywhere (though I have mine in ~/.dotfiles
as it seemed most logical for me).
I would recommend doing a git clone --recursive
for this repository, since it contains git submodules, which will then automatically get pulled in as well. Of course, you can do it non-recursively and then just pull those modules selectively which you actually want.
Once in the repository directory, when you then run ./install.sh
it will install many of the packages I use (though they are probably slightly out-of-date) and link the dotfiles into the home directory.
If you do not want to install any packages, but only link the dotfiles run stow -S */
from the main repository directory.
Since dotfiles management is based on stow
, it will not overwrite anything already in the home directory (though you can force it to if you really want, using stow --override='.*'
-- I do not recommend this).
After all files are linked and you open a new shell session, the dotlink
alias will allow you to re-link all dotfiles from anywhere on the system.1
Both automatic installation paths are presumably somewhat brittle. In any case, I would suggest to manually look through the files for things you want instead of copying and activating everything. Dotfiles are too personal to be standardized like that. They're pets, not cattle. Enjoy!
Main Modules
wayland
- Containing basics for fully functional tiling wayland setup:kitty
- Terminal emulator (GPU accelerated and configurable)tmux
- terminal multiplexernvim
- Neovim configurationvifm
- vim-like file-managerqutebrowser
- vim-key enabled web browserpass
- Password management suitebibtex
- LateX/BibteX/pandoc plaintext writing & reference suitegit
- distributed version control system.
Notes
- Generally, most configuration for applications attempts to follow the XDG specifications, keeping configuration in .config directory and supplementary files in .local/share directory. Over time, I am moving more applications to this standard: it keeps the home directory clean, and the separation of configuration, binaries, and data relatively clear.
- The
zsh
directory contains all setup for the z-shell, my daily work environment. It should not be required for working with any other module but will add additional functionality to many (such as command auto-completion and so on).sh
sets some base functionality for any shell you may wish to work in. It is, for now, the only module that is required for some other modules to work.2 rofi
contains additional scripts and a simple theming framework for rofi and should probably be reorganized to put the correct files into the correct directories (per xdg) at some point.- Whereas
sh
module scripts are requirements for other scripts,.local/bin
in thescripts
module contains most executable user scripts. Most of these have been migrated to other corresponding modules (e.g. if a script exclusively targets git functionality, it will live there), some useful --- or left-over --- stand-alone scripts remain however. .local/share/pandoc
contains configuration for academic latex writing (pandoc, really) and is of interest if you want to use this functionality..xinitrc
is used for x initialization and program startup. At some point, some of the consistently running applications may be moved to systemd/runit as supervised services.- Generally, top-level directories starting with a . are only meaningful for the repository not for the functionality of the machine that these dotfiles are deployed on. That means
.gitlab-ci.yml
,.assets/
,.stowrc
and similar files and directories will not show up in the final deployment in any home directory. Perhaps they should be called dotdot-files since they're the dotfiles for my dotfiles. 🙂 (Also, 'dotfiles'.)
-
This alias only works when the dotfiles are cloned into
~/.dotfiles
, mirroring my setup. This is due to a hard-coded cd into this directory. If your dotfiles lie in another directory and you want to use the dotlink alias, simply change the corresponding line inbootstrap/.config/sh/alias.d/dotlink.sh
] ↩︎ -
I may remove this requirement in the future to make modules more self-contained. However, relying on some base utility scripts makes it easier to avoid duplicating such functionality for each individual script in other modules. ↩︎