1
0
Fork
You've already forked dotfiles
0
There's no place like ~/
  • Shell 77.5%
  • Vim Script 7.7%
  • Perl 6.8%
  • Lua 6.3%
  • Python 1.7%
Find a file
2026年06月11日 08:54:27 +02:00
.config 20260609: correctly set nvm script dir 2026年06月11日 08:54:27 +02:00
.local/share 20251207: nice colours, based on Argonaut but black bg 2025年12月10日 18:15:41 +01:00
.terminfo Clean up unnecessary terminfo files 2018年02月02日 16:44:06 +01:00
.vim Words 2026年04月08日 18:41:46 +02:00
bin Support Olympus RAW files 2026年02月28日 18:33:28 +01:00
.agignore 'ag' ignore file 2018年01月05日 12:10:22 +01:00
.bash_aliases mc without the mouse 2023年03月11日 21:29:39 +01:00
.bashrc Local binaries, like uv 2025年02月11日 18:04:01 +01:00
.gitconfig 20250425: use vimdiff with merge conflicts; default git branch is 'main' 2025年05月13日 13:39:24 +02:00
.gitignore Ignore Obsidian nvim plugin 2026年01月19日 22:25:28 +01:00
.gitignore_global Global Git ignore file 2020年04月24日 20:33:00 +02:00
.gitmodules git submodule to install vundle for vim; install script looted from rrix 2014年05月05日 20:34:28 +02:00
.goaccessrc Colour scheme 1, no ignored ip's 2016年04月05日 10:54:27 +02:00
.hgauthors.txt hg config 2014年05月14日 10:12:54 +02:00
.hgignore Import 2014年05月05日 20:43:38 +02:00
.hgrc Whitespace-b-gone 2015年01月13日 14:09:18 +01:00
.ideavimrc Use vim default clipboard 2020年02月18日 16:07:58 +01:00
.ignore Ignore vim swap files 2019年03月19日 18:23:18 +01:00
.profile nvm node.js enablement 2016年12月02日 12:02:56 +01:00
.screenrc screenrc from server 2014年05月14日 18:09:28 +02:00
.tmux.conf Changed terminfo so italics etc work in nvim 2026年01月21日 17:51:44 +01:00
.vimrc Support regular tmux 256 colour option 2026年01月27日 14:31:32 +01:00
install.sh Install neovim config dir 2026年01月18日 19:42:57 +01:00
README.md direnv notice 2025年12月30日 22:22:15 +01:00

dotfiles

After having my homedirs in subversion for years, moved this collection to Git in 2014 and standardised over all my machines (servers, desktops, laptops, phones, tablets).

To install:

mkdir ~/.dot
cd ~/.dot
clone <url>
cd dotfiles # this takes you to the freshly cloned ~/.dot/dotfiles
sh install.sh # follow the instructions and install the files in the homedir

Extra's:

  • virtualfish for virtualenv(wrapper) integration in fish shell.
  • N.B.: virtualfish might be on its way out, with uv and direnv configurations

Dependency on fzf and ripgrep rg

Both the shell configuration and vim make use of fzf. fzf is a general-purpose command-line fuzzy finder and helps one 'grep' really fast through filenames. It's an alternative for the well-known find. Install it by cloning the repository and running the install script (check the Installation notes too).

ripgrep, rg is a line-oriented search tool that recursively searches your current directory for a regex pattern while respecting your gitignore rules. Basically, a really fast (and clever) grep.

If your distribution does not provide a package, get yours from the releases page (there's a .deb for 64-bit systems).

starship prompt

By default, the included fish shell configuration installs and uses the bobthefish prompt, but I have been using the starship prompt since November 2023 and configuration is included.

To use, install starship and link the configuration to activate the configured prompt:

cd ~/.config
ln -s ../.dot/dotfiles/.config/starship.toml

All dependencies

To have the full experience, install all of these:

sudo apt install git curl vim-nox fzf ripgrep exuberant-ctags fish grc tmux htop direnv
# needed for building vim plugins:
sudo apt install cmake build-essential
# also, this classic:
sudo apt install mc

and maybe install a nice colour theme for your terminal from https://gogh-co.github.io/Gogh/ - I use argonaut with a black background myself.

vim config

The .vimrc has a lot going on. Find out more about my tweaks and use :Maps in vim itself to see key mappings

vim uses both fzf and rg, and also really likes having ctags (Exuberant Ctags) available.

Fix for shift+F6 in tmux (and screen probably)

In tmux, do infocmp > screen-256color. Add the line kf16=\E[17;2~, and compile the file with tic. This will result in ~/.terminfo/s/screen-256color with the correct keycode for shift+F6. .tmux.conf needs the line setw -g xterm-keys on for it to register correctly.

~/.git_repos config file

The update_repos script takes the ~/.git_repos config file and lets you update and clone your projects automatically (or at least in a batch). In the example the first four repos are located in ~/workspace/projects/github, and the other two in workspace/projects/others and workspace/projects/private respectively; then the workspace and group are empty, so mydocs is cloned into the homedir. At the moment, only paths relative to the user's homedir are supported.

workspace=workspace/projects
group=github
git@github.com:aquatix/ns-api.git
git@github.com:aquatix/dotfiles.git
git@github.com:aquatix/dammit.git
git@github.com:aquatix/imagine.git
group=others
https://github.com/Azelphur/pyPushBullet.git
group=private
ssh://myserver/srv/git/privdotfiles.git
# Homedir as workspace:
workspace=
group=
ssh://myserver/srv/git/mydocs.git

Interesting scripts

./bin/ description
calibre_update Update (or install) ebook manager Calibre
clean_mac_files Remove those DS_Store and other dirs
clean_project Remove compiled Python files, vim swp files
clean_pyc Remove compiled Python files
fixpermissions chmod dirs to 755, files to 644
fixpictimestamps Change file ctime to datetime from EXIF using exiftool
fontupdate Update nerd-fonts; whole repo on server, link font files to ~/.local/share/fonts
fuz Simple note-taking 'app' based on FZF and vim
git_autosave Simple script to call from crontab or something to commit certain files in Git and push
git_clean Clean the Git tree
sorter Sort files in newly created subdirectories, based on pre- or postfixes
update_repos Update a bunch of Git repos at once, like all your project. Config with ~/.git_repos