Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/darfink/dotfiles
.files — my own preferences for Ubuntu and macOS
https://github.com/darfink/dotfiles
dotfiles emacs tmux vim
Last synced: 2 months ago
JSON representation
.files — my own preferences for Ubuntu and macOS
- Host: GitHub
- URL: https://github.com/darfink/dotfiles
- Owner: darfink
- Created: 2014-10-08T13:28:04.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-08-22T12:10:45.000Z (over 2 years ago)
- Last Synced: 2024-04-18T05:50:56.368Z (10 months ago)
- Topics: dotfiles, emacs, tmux, vim
- Language: Emacs Lisp
- Homepage:
- Size: 13.6 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Darfink's dotfiles
These are my dotfiles; to get started run
```sh
git clone --recurse-submodules git://github.com/darfink/dotfiles.git ~/.dotfiles
```Ensure that GNU [stow](https://www.gnu.org/software/stow/) is installed and
change directory to `~/.dotfiles`.Once you are in the right place, run `stow ` to setup a configuration.
## Packages
These are the available package configurations:
- `alacritty` - terminal settings.
- `dotbin` - utilities and tools.
- `emacs` - spacemacs setup.
- `gdb` - [GDB dashboard](https://github.com/cyrus-and/gdb-dashboard).
- `generic` - config for curl/dig/dircolors/readline.
- `git` - config and aliases.
- `python`
- `ruby`
- `ssh`
- `tmux`
- `vim`
- `vscode`
- `zsh`## Operating system
### macOS
Ensure you set `zsh` as the default shell, by adding it to `/etc/shells` and
executing `chsh -s /usr/local/bin/zsh`.The `path_helper` utility is also troublesome; it uses `/etc/zprofile`
to set the shell's `$PATH` (therefore being invocated after
`~/.zshenv`), and it prepends to the `$PATH` instead of appending. To
circumvent this, remove `/etc/zprofile` and replace it with
`/etc/zshenv` consisting of the following content:```sh
# Avoid clobbering home
export ZDOTDIR="$HOME/.config/zsh"# Prevent prepending to $PATH when invoking subshells
if [[ -x /usr/libexec/path_helper && $SHLVL -eq 1 ]]; then
eval `/usr/libexec/path_helper -s`
fi
```