Commit Graph

548 Commits

Author SHA1 Message Date
0edd5d513a Adding public key system to update script.
There should be no issue with this. The SSH server will already
advertise the keys to all connecting instances.
2019-12-11 00:55:57 -05:00
1bc305b48e Added missing semicolon to theme. 2019-12-11 00:55:57 -05:00
578b14331f Added emacs modeline like feature. 2019-12-11 00:55:57 -05:00
15442e30f0 Experimenting with LSPs. 2019-12-11 00:55:57 -05:00
cdfb5e7f3e Added projectile base dir. 2019-12-11 00:55:57 -05:00
b21a6d9726 Updated readme for project 2019-12-04 01:01:09 -05:00
328a525afd Switched from update and upgrade to just refresh.
Upgrade and update (which is a bit redundant as upgrade does an update.)
take a prohibitively long time on both of my machines. Instead I'll
manually manage that and just use refresh instead.
2019-12-04 01:01:09 -05:00
2cd660a4e9 Formatting. 2019-12-01 16:02:10 -05:00
b611b56352 Add editconfig and make support. 2019-12-01 15:59:33 -05:00
68ef4c68f3 Added tab complete for company & fuzzy for helm. 2019-12-01 15:54:52 -05:00
8cb599fe45 updated linux tts for firefox.
Adjusted speed and voice used.
2019-11-25 12:27:41 -05:00
d35ca827a8 Merge branch 'master' of git.jpatrick.io:james/dotfiles 2019-11-25 12:26:02 -05:00
3f28364a66 Added Farge 2019-11-25 12:23:38 -05:00
e1acc457cd Added fix for shell scripts. 2019-11-25 12:20:54 -05:00
9b48fc991c Fixed inverted logic. 2019-11-25 12:18:31 -05:00
a1e365546b Tellme script can now tell if post failed.
This is a very fragile implementation of this, but I didn't want to add
any dependencies to this script since I want it to be able to portable
above all else. If anyone has a better solution I would love to hear it.
2019-11-22 14:57:08 -05:00
73c40c8e4b Formatting 2019-11-22 14:56:38 -05:00
a44bfd1a6e Specified as and defer tags for autoenv. 2019-11-22 14:55:05 -05:00
569598683e Fixed bad XDG CONFIG value.
Not sure why I thought it would be DIR instead of HOME but I blame
poorly executed theft.
2019-11-22 14:53:31 -05:00
5f28729298 A push over script that doesn't hardcode tokens. 2019-11-22 14:52:45 -05:00
f167ebb4a1 Grouped commands, plugins, and themes.
Basically just relocated the command out of the middle of the plugins.
2019-11-20 17:24:15 -05:00
898500ffbb Reworked fzf dependency.
I've reorganized some of the fzf dependency some. There are large number
of resources I need from the fzf repo that I have been omitting because
zplug does no work well with a repo that both has both bins and plugins.
Instead I've been manually managing the fzf.zsh files and the fzf-tmux
then using the binary from fzf-bin. This nominally worked for zsh it
wasnone functioning for other things that used fzf as a dependency.
Additionally this broke the rule of don't write what you don't have to
mantra of this project.
2019-11-20 16:45:34 -05:00
1237da247e Friends don't let friends tmux and root. 2019-11-20 16:10:43 -05:00
07485b1f02 Reorganized sway config. 2019-10-06 01:36:31 -04:00
f22aa4acd1 Formatting 2019-10-06 00:20:14 -04:00
ae3dd9681e Added wob support for brightness & volume.
Project is early, but I'm hoping this will be a proper replacement for
xob.
https://github.com/francma/wob
2019-10-06 00:19:21 -04:00
ea49a908f7 Added Github links for startup processes. 2019-10-05 21:37:12 -04:00
9beb403b13 Added autotiling. 2019-10-05 21:36:46 -04:00
b3cbc0eed2 Formatting 2019-10-05 21:34:26 -04:00
c80a69a129 Added dimming 15 seconds before lock 2019-10-05 21:32:55 -04:00
4b4ce8b409 Switch from brightnessctl -> light 2019-10-05 19:46:09 -04:00
858a1c98e1 Changed the source directory from Code -> src. 2019-10-05 15:43:08 -04:00
6a4f0ba91b Added file structure documentation for zsh. 2019-09-21 21:06:28 -04:00
29c8087bc2 Formatting. 2019-09-21 20:59:18 -04:00
5760e74477 Added actual script. 2019-09-21 16:24:19 -04:00
abd085d1ed Added SmoothSrolling and Incremental Search 2019-09-21 16:23:30 -04:00
6bba91cd5c Added Text to Speach system. This currently doesnt' support OSX. 2019-09-21 15:04:38 -04:00
22fb953c36 Added theme.
It is based off of onedark, which is the theme Doom is based off of.
2019-09-21 15:03:20 -04:00
7d9dea1fe8 Corrected Naming of Tridactyl config. 2019-09-21 15:02:28 -04:00
1c532913fd Added zlogout 2019-09-17 21:12:24 -04:00
8414ecc739 Adding back redshift.
This doesn't seem to be the source of the crash
2019-09-17 21:08:28 -04:00
18905bad56 Added , as leader. 2019-09-17 19:44:18 -04:00
32af063826 Added logout prompt. 2019-09-09 22:31:21 -04:00
7271daf860 Added additional options to directory tooling.
Most notiable is Extended globbing.
2019-09-05 18:38:36 +00:00
95c8eb96be Fixed issue for undefined spacemacs version is not specified 2019-09-05 18:36:55 +00:00
a3b2955e60 Fixed issue stemming from eval order in make if statement.
So I found a rather weird issue. The makefile was evaling the
conditional of a target before that target is called.

`make install` is a empty target with a ordered dependency: `init` and
`update`. In the `init` script section it will install the `~/.zplug`
zsh dependency, and the update script checks to see if that target
exist, aborting if it doesn't. The issue is that running `make install`
will install the `~/.zplug` dir, then report that the dir doesn't exist.
Where running `make init && make update` will work as expected.

There is probably some flag in make to resolve this, but I was unable to
to find any documentation for this.
2019-09-05 15:21:41 +00:00
af327ff7f5 Added FiraCode Ligatures to doom config. 2019-08-26 14:35:50 -04:00
da3716a1d5 Added PIP support for Firefox Picture & Picture. 2019-08-21 23:07:24 -04:00
6cfa50a2a6 Formating and white spacing. 2019-08-21 22:11:02 -04:00
9aa3561079 Added please alias from @kathyra_ 2019-08-18 12:45:35 -04:00