Correcting README's for softlink path.
This commit is contained in:
@@ -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 <location of cloned dotfiles fish directory> ~/.config/fish
|
||||
ln -s <location of cloned dotfiles fish directory> ~/.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
|
||||
```
|
||||
|
||||
@@ -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 <location of cloned dotfiles nvim directory> ~/.config/nvim
|
||||
ln -s <location of cloned dotfiles nvim directory> ~/.config
|
||||
# e.g.
|
||||
# ln -s ~/dotfiles/nvim ~/.config/nvim
|
||||
# ln -s ~/dotfiles/nvim ~/.config
|
||||
```
|
||||
|
||||
## `neovim` System Package
|
||||
|
||||
@@ -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 <location of cloned dotfiles tmux directory> ~/.config/tmux
|
||||
ln -s <location of cloned dotfiles tmux directory> ~/.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
|
||||
<leader> I
|
||||
|
||||
Reference in New Issue
Block a user