diff --git a/fish/README.md b/fish/README.md index e61829e..f352aa9 100644 --- a/fish/README.md +++ b/fish/README.md @@ -1,28 +1,37 @@ # Shaun's `fish` Dotfiles ## Location + ### Config Directory + The configuration files need to be present at this location, `~/.config/fish`. So, we can use the following command to softlink/symlink, ```bash -ln -s ~/.config/fish +ln -s ~/.config # e.g. -# ln -s ~/dotfiles/fish ~/.config/fish +# ln -s ~/dotfiles/fish ~/.config ``` + ## Install Powerline Font or Nerd Font + A nerd font is expected for the awesome unicode characters, and the easiest is probably powerline. + ```bash dnf install powerline ``` ## Install Oh My Fish (`omf`) + This addon is expected within our configuration so we should install it. + ```bash curl https://raw.githubusercontent.com/oh-my-fish/oh-my-fish/master/bin/install | fish ``` ## Install Bob The Fish Theme (`bobthefish`) + This theme is great. + ```bash omf install bobthefish ``` diff --git a/nvim/README.md b/nvim/README.md index 9553ee0..046d173 100644 --- a/nvim/README.md +++ b/nvim/README.md @@ -5,9 +5,9 @@ The configuration files need to be present at this location, `~/.config/nvim`. So, we can use the following command to softlink/symlink, ```bash -ln -s ~/.config/nvim +ln -s ~/.config # e.g. -# ln -s ~/dotfiles/nvim ~/.config/nvim +# ln -s ~/dotfiles/nvim ~/.config ``` ## `neovim` System Package diff --git a/tmux/README.md b/tmux/README.md index d97be73..8ddba70 100644 --- a/tmux/README.md +++ b/tmux/README.md @@ -1,20 +1,24 @@ # Shaun's `tmux` Dotfiles ## Location + The configuration files need to be present at this location, `~/.config/tmux`. So, we can use the following command to softlink/symlink, ```bash -ln -s ~/.config/tmux +ln -s ~/.config # e.g. -# ln -s ~/dotfiles/tmux ~/.config/tmux +# ln -s ~/dotfiles/tmux ~/.config ``` ## Install Plugin Manager (`tpm`) + We will use `tpm` as our plugin manager, but it cannot install itself. So we have to clone it into the proper place. `git clone https://github.com/tmux-plugins/tpm ~/.config/tmux/plugins/tpm` ## Install Plugins + Once the tmux symlink is created, we can install all plugins. This is done using tpm from within a tmux session. + ```bash tmux I