Add proper documentation for Nixpkgs
This commit is contained in:
parent
cb1d420a62
commit
ef3a9a84f2
1 changed files with 28 additions and 0 deletions
28
INSTALL.md
28
INSTALL.md
|
@ -6,6 +6,34 @@ If you are a tpm user, you can install the theme and keep up to date by adding t
|
||||||
|
|
||||||
set -g @plugin 'dracula/tmux'
|
set -g @plugin 'dracula/tmux'
|
||||||
|
|
||||||
|
### Install with [Nix](https://nixos.org)
|
||||||
|
|
||||||
|
If you're using [home-manager](https://github.com/nix-community/home-manager), an example config would look similar to this:
|
||||||
|
Then run `home-manager switch`, the `Activating theme` section doesn't apply here.
|
||||||
|
|
||||||
|
```nix
|
||||||
|
programs.tmux = {
|
||||||
|
enable = true;
|
||||||
|
clock24 = true;
|
||||||
|
plugins = with pkgs.tmuxPlugins; [
|
||||||
|
sensible
|
||||||
|
yank
|
||||||
|
{
|
||||||
|
plugin = dracula;
|
||||||
|
extraConfig = ''
|
||||||
|
set -g @dracula-show-battery false
|
||||||
|
set -g @dracula-show-powerline true
|
||||||
|
set -g @dracula-refresh-rate 10
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
extraConfig = ''
|
||||||
|
set -g mouse on
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
#### Activating theme
|
#### Activating theme
|
||||||
|
|
||||||
1. Make sure `run -b '~/.tmux/plugins/tpm/tpm'` is at the bottom of your .tmux.conf
|
1. Make sure `run -b '~/.tmux/plugins/tpm/tpm'` is at the bottom of your .tmux.conf
|
||||||
|
|
Loading…
Reference in a new issue