https://github.com/doronbehar/dotfiles
My Dotfiles - tmux, vim, bash, zsh with powerline and git
https://github.com/doronbehar/dotfiles
Last synced: about 1 month ago
JSON representation
My Dotfiles - tmux, vim, bash, zsh with powerline and git
- Host: GitHub
- URL: https://github.com/doronbehar/dotfiles
- Owner: doronbehar
- Created: 2016-02-23T17:31:12.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-04-24T19:37:21.000Z (about 2 months ago)
- Last Synced: 2025-04-24T20:37:12.332Z (about 2 months ago)
- Language: Shell
- Homepage:
- Size: 2.6 MB
- Stars: 25
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
== My dotfiles
* I use `Neovim`.
* I use `zsh`.
* I don’t use `Oh-My-zsh' - It’s too robust in my opinion.
* I use https://github.com/romkatv/powerlevel10k[powerlevel10k]
* I use `zsh-syntax-highlighting`.
* I hate reinventing the wheel.If I have to use bash on Windows, I put this in my `~/.bashrc`:
[source,bash]
----
#!/bin/bash
DOTFILES_DIR=$HOME/dotfiles
source $DOTFILES_DIR/.bashrc
----For ZSH on Windows (with msys2), I put in `~/.zshrc`:
[source,zsh]
----
export ZDOTDIR=$HOME/dotfiles
source $ZDOTDIR/.zshenv
source $ZDOTDIR/.zshrc
----On msys, from some reason this ~/.tmux.conf was needed:
[source,tmux]
----
# Not using simply source ~/.tmux/init.tmux as it doesn't work
run-shell "tmux source ~/.tmux/init.tmux"
----Stuff that may help in an msys setup:
- https://stackoverflow.com/a/44351945/4935114
- https://www.msys2.org/docs/terminals/
- https://devhints.io/pacmanPacman commands I ran:
[source,zsh]
----
pacman -Syy
pacman -Syu
pacman -S \
tmux \
git \
zsh \
mingw-w64-x86_64-bat \
mingw-w64-x86_64-neovim \
man-db
----