Correcting README's for softlink path.
This commit is contained in:
@@ -1,28 +1,37 @@
|
|||||||
# Shaun's `fish` Dotfiles
|
# Shaun's `fish` Dotfiles
|
||||||
|
|
||||||
## Location
|
## Location
|
||||||
|
|
||||||
### Config Directory
|
### Config Directory
|
||||||
|
|
||||||
The configuration files need to be present at this location, `~/.config/fish`. So, we can use the following command to softlink/symlink,
|
The configuration files need to be present at this location, `~/.config/fish`. So, we can use the following command to softlink/symlink,
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
ln -s <location of cloned dotfiles fish directory> ~/.config/fish
|
ln -s <location of cloned dotfiles fish directory> ~/.config
|
||||||
# e.g.
|
# e.g.
|
||||||
# ln -s ~/dotfiles/fish ~/.config/fish
|
# ln -s ~/dotfiles/fish ~/.config
|
||||||
```
|
```
|
||||||
|
|
||||||
## Install Powerline Font or Nerd Font
|
## Install Powerline Font or Nerd Font
|
||||||
|
|
||||||
A nerd font is expected for the awesome unicode characters, and the easiest is probably powerline.
|
A nerd font is expected for the awesome unicode characters, and the easiest is probably powerline.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
dnf install powerline
|
dnf install powerline
|
||||||
```
|
```
|
||||||
|
|
||||||
## Install Oh My Fish (`omf`)
|
## Install Oh My Fish (`omf`)
|
||||||
|
|
||||||
This addon is expected within our configuration so we should install it.
|
This addon is expected within our configuration so we should install it.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl https://raw.githubusercontent.com/oh-my-fish/oh-my-fish/master/bin/install | fish
|
curl https://raw.githubusercontent.com/oh-my-fish/oh-my-fish/master/bin/install | fish
|
||||||
```
|
```
|
||||||
|
|
||||||
## Install Bob The Fish Theme (`bobthefish`)
|
## Install Bob The Fish Theme (`bobthefish`)
|
||||||
|
|
||||||
This theme is great.
|
This theme is great.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
omf install bobthefish
|
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,
|
The configuration files need to be present at this location, `~/.config/nvim`. So, we can use the following command to softlink/symlink,
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
ln -s <location of cloned dotfiles nvim directory> ~/.config/nvim
|
ln -s <location of cloned dotfiles nvim directory> ~/.config
|
||||||
# e.g.
|
# e.g.
|
||||||
# ln -s ~/dotfiles/nvim ~/.config/nvim
|
# ln -s ~/dotfiles/nvim ~/.config
|
||||||
```
|
```
|
||||||
|
|
||||||
## `neovim` System Package
|
## `neovim` System Package
|
||||||
|
|||||||
@@ -1,20 +1,24 @@
|
|||||||
# Shaun's `tmux` Dotfiles
|
# Shaun's `tmux` Dotfiles
|
||||||
|
|
||||||
## Location
|
## Location
|
||||||
|
|
||||||
The configuration files need to be present at this location, `~/.config/tmux`. So, we can use the following command to softlink/symlink,
|
The configuration files need to be present at this location, `~/.config/tmux`. So, we can use the following command to softlink/symlink,
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
ln -s <location of cloned dotfiles tmux directory> ~/.config/tmux
|
ln -s <location of cloned dotfiles tmux directory> ~/.config
|
||||||
# e.g.
|
# e.g.
|
||||||
# ln -s ~/dotfiles/tmux ~/.config/tmux
|
# ln -s ~/dotfiles/tmux ~/.config
|
||||||
```
|
```
|
||||||
|
|
||||||
## Install Plugin Manager (`tpm`)
|
## 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.
|
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`
|
`git clone https://github.com/tmux-plugins/tpm ~/.config/tmux/plugins/tpm`
|
||||||
|
|
||||||
## Install Plugins
|
## Install Plugins
|
||||||
|
|
||||||
Once the tmux symlink is created, we can install all plugins. This is done using tpm from within a tmux session.
|
Once the tmux symlink is created, we can install all plugins. This is done using tpm from within a tmux session.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
tmux
|
tmux
|
||||||
<leader> I
|
<leader> I
|
||||||
|
|||||||
Reference in New Issue
Block a user