Merge branch 'master' of git.jpatrick.io:james/dotfiles
This commit is contained in:
commit
d2e6965286
|
@ -137,7 +137,7 @@
|
||||||
;;ess ; emacs speaks statistics
|
;;ess ; emacs speaks statistics
|
||||||
;;faust ; dsp, but you get to keep your soul
|
;;faust ; dsp, but you get to keep your soul
|
||||||
;;fsharp ; ML stands for Microsoft's Language
|
;;fsharp ; ML stands for Microsoft's Language
|
||||||
go ; the hipster dialect
|
(go +lsp) ; the hipster dialect
|
||||||
;;(haskell +dante) ; a language that's lazier than I am
|
;;(haskell +dante) ; a language that's lazier than I am
|
||||||
;;hy ; readability of scheme w/ speed of python
|
;;hy ; readability of scheme w/ speed of python
|
||||||
;;idris ;
|
;;idris ;
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
### Start Nextcloud.
|
### Start Nextcloud.
|
||||||
exec nextcloud
|
exec --no-startup-id nextcloud
|
||||||
|
|
||||||
### Make things a little easier easier on the eyes.
|
### Make things a little easier easier on the eyes.
|
||||||
exec redshift
|
exec --no-startup-id redshift
|
||||||
|
|
||||||
### Notifications
|
### Notifications
|
||||||
# https://github.com/emersion/mako
|
# https://github.com/emersion/mako
|
||||||
exec mako
|
exec --no-startup-id mako 2>&1 >/tmp/mako.log
|
||||||
|
|
||||||
### ydotool
|
### ydotool
|
||||||
exec ydotoold
|
exec --no-startup-id ydotoold
|
||||||
|
|
||||||
### Autotiling
|
### Autotiling
|
||||||
# https://github.com/nwg-piotr/autotiling
|
# https://github.com/nwg-piotr/autotiling
|
||||||
|
@ -34,6 +34,7 @@ exec_always {
|
||||||
|
|
||||||
### Clipboard manager
|
### Clipboard manager
|
||||||
# https://github.com/yory8/clipman
|
# https://github.com/yory8/clipman
|
||||||
exec wl-paste -t text --watch clipman store
|
exec --no-startup-id wl-paste -t text --watch clipman store
|
||||||
|
|
||||||
# vim: ft=cfg
|
# vim: ft=cfg
|
||||||
|
# -*- mode: conf-space -*-
|
||||||
|
|
|
@ -1,6 +1,16 @@
|
||||||
|
|
||||||
# ZSH
|
# ZSH
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
Install for this follows the norm for the rest of the dotfiles. `cd` to this directory and run
|
||||||
|
|
||||||
|
```make install```
|
||||||
|
|
||||||
|
or if you are on a machine where BSD Make is installed by default:
|
||||||
|
|
||||||
|
```gmake install```
|
||||||
|
|
||||||
## File Structure.
|
## File Structure.
|
||||||
|
|
||||||
The file structure looks something like this: Nodes with a trailing "δ" are directories.
|
The file structure looks something like this: Nodes with a trailing "δ" are directories.
|
||||||
|
@ -23,16 +33,12 @@ zsh
|
||||||
└── zshrc
|
└── zshrc
|
||||||
```
|
```
|
||||||
|
|
||||||
* `environment` :: This is the contains environment base logic and contains. At
|
* `environment` :: This is the contains environment base logic and contains. At each step of the zsh loading process the `env_loader` function will load the corresponding file.
|
||||||
each step of the zsh loading process the `env_loader` function will load the
|
|
||||||
corresponding file.
|
|
||||||
* `host` :: Loaded Automatically. Conditionally loads by based on `$HOST` value.
|
* `host` :: Loaded Automatically. Conditionally loads by based on `$HOST` value.
|
||||||
* `os` :: Loaded Automatically. Conditionally loads by based on `$OSTYPE` value.
|
* `os` :: Loaded Automatically. Conditionally loads by based on `$OSTYPE` value.
|
||||||
* `makefile` :: Install/Update/Remove makefile.
|
* `makefile` :: Install/Update/Remove makefile.
|
||||||
* `modules` :: Local modules loaded by [zplug](https://github.com/zplug/zplug).
|
* `modules` :: Local modules loaded by [zplug](https://github.com/zplug/zplug).
|
||||||
* `transient` :: Files that are required for zsh (eg history), that are not to
|
* `transient` :: Files that are required for zsh (eg history), that are not to
|
||||||
be versioned.
|
be versioned.
|
||||||
* `zlogin`/`zlogout`/`zprofile`/etc :: The default shell resource files. See
|
* `zlogin`/`zlogout`/`zprofile`/etc :: The default shell resource files. See [here](https://shreevatsa.wordpress.com/2008/03/30/zshbash-startup-files-loading-order-bashrc-zshrc-etc/) for more infomation on load order.
|
||||||
[here](https://shreevatsa.wordpress.com/2008/03/30/zshbash-startup-files-loading-order-bashrc-zshrc-etc/)
|
|
||||||
for more infomation on load order.
|
|
||||||
* `zplug` :: How to load modules.
|
* `zplug` :: How to load modules.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user