Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enocom/dotfiles
Simple unix config files
https://github.com/enocom/dotfiles
Last synced: about 1 month ago
JSON representation
Simple unix config files
- Host: GitHub
- URL: https://github.com/enocom/dotfiles
- Owner: enocom
- License: mit
- Created: 2012-08-26T21:53:31.000Z (over 12 years ago)
- Default Branch: main
- Last Pushed: 2024-06-08T03:53:48.000Z (7 months ago)
- Last Synced: 2024-10-14T11:32:55.244Z (3 months ago)
- Language: Shell
- Homepage:
- Size: 386 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotfiles
This is a collection of useful odds and ends. I try to keep the files
here as minimal as possible.## Current tools:
- [Alacritty][alacritty]
- [Zsh][zsh] configured with a simplified version of [Prezto][prezto]
- [Neovim][neovim] with Lua-based configuration
- [tmux][][alacritty]: https://alacritty.org
[neovim]: https://neovim.io
[prezto]: https://github.com/sorin-ionescu/prezto
[tmux]: https://github.com/tmux/tmux/wiki
[zsh]: https://www.zsh.org## Installation
``` shell
# NeoVim installation
ln -s ~/workspace/dotiles/nvim ~/.config/nvim# Zsh setup
# Set the ZDOTDIR to the zsh directory wherever it is on disk
sudo touch /etc/zshenv
sudo echo 'export ZDOTDIR="${HOME}/workspace/dotfiles/zsh"' >> /etc/zsh/zshenv# tmux setup
ln -s ~/workspace/dotfiles/tmux.conf ~/.tmux.conf
```