ItsDrike
1c2b7cac0d
Import DISPLAY to systemd for user services
2022-03-09 22:02:12 +01:00
ItsDrike
8a87f85b97
Rebind middle click for contex, not close_all
2022-02-24 17:24:59 +01:00
ItsDrike
172282d194
Update dunst config
2022-02-23 16:15:02 +01:00
ItsDrike
eb784ab056
Add bareinit git alias
2022-02-11 18:28:25 +01:00
ItsDrike
e87a2eb781
Bump font awesome version to 6
...
- Arch package 'ttf-font-awesome' has been updated to use version 6 of
fontawesome. To keep up with it, also bump the version of the font in
xmonad so that users won't be forced to install it manually.
2022-02-10 11:11:31 +01:00
ItsDrike
ba9b0f0a3f
Update git signing key
2022-02-10 03:34:47 +01:00
ItsDrike
96a7166919
Add global gitignore file
2022-01-25 19:57:19 +01:00
ItsDrike
0fa5db7477
Add alias for quickly stashing staged files
2022-01-25 19:57:02 +01:00
ItsDrike
b2a32d8202
Add git alias to clone as bare repo
...
- This puts all of the git bare files into .bare and adds a .git file
which specifies it's location. This makes for a nice and clean way to
handle working with bare repositories
- Bare repositories are very useful since they allow for neat workflow
by using git worktrees that can basically create folders for
individual branches. This means we can easily check out given brach
just by entering that folder and we don't need to worry about
conflicting files which we'd have to stash and then apply the stash
once we're done done.
2022-01-10 17:44:45 +01:00
ItsDrike
ab1f173a2d
Add topgrade
2022-01-04 01:04:16 +01:00
ItsDrike
75fbd46888
Fix gchb alias
2022-01-04 01:03:18 +01:00
ItsDrike
f1f8946139
Add alias to search pacnew files
2022-01-04 01:03:05 +01:00
ItsDrike
18ba4c4906
Fix keybinds
2021-12-24 02:42:04 +01:00
ItsDrike
c1af932797
Remove unnecessary env variables
2021-12-18 18:10:18 +01:00
ItsDrike
abac53fa9f
Update comments
2021-12-18 18:10:04 +01:00
ItsDrike
826cef4e6e
POSIX compliance, shellcheck
2021-12-18 18:09:25 +01:00
ItsDrike
d843e90462
Use spaces instead of tabs
2021-12-18 18:07:47 +01:00
ItsDrike
b07404d669
Use POSIX-compatible sh, not zsh
2021-12-18 12:04:41 +01:00
ItsDrike
09ce7d00a9
Convert tabs to spaces
2021-12-18 12:04:28 +01:00
ItsDrike
752fd36c62
Fix pip aliases for cpython/pypy
...
- We can't simply define `pip3.6`,... because the aliases support both
cpython and pypy version, which means these needs to differ. For that
reason, I decided to use `ppip3` for pypy and `pip3` for cpython.
However there's also an option to use the full version like this:
`pypy3pip` or `py3.7pip`.
2021-12-18 11:49:37 +01:00
ItsDrike
5432334da6
Simplify python alias creation
2021-12-18 05:48:36 +01:00
ItsDrike
02237fd0b1
Don't re-run work_directory function
...
- Re-reunning work_directory every time we redraw the prompt isn't
necessary, since the function is here to generate the zsh supported
syntax for the prompt that will get expanded into a work directory
automatically.
- The function is only here to determine whether we're in TTY and use
ASCII compatible symbols if we are, however it is enough to only check
this once initially, since we can't leave TTY in favor of a graphical
instance without reloading the rc file and neither can we leave.
- However, this function also checks for `USE_SHORTENED_WORKDIR`
variable and decides which prompt to show based on it. This means that
it someone was setting this variable in their profile file it would
now no longer be respected, however this was never the intention of
that variable, if a change is desired, the variable should simply be
edited in the prompt file directly.
- Removing continual calls to this function each time prompt is redrawn
is worth the very minor inconvenience of no longer supporting
shortened workdirs from externally set variable due to the speed
benefit it gives us, though not that noticeable, it is pretty
significant. Not to mention that this wasn't intended/recommended
usage anyway.
2021-12-18 04:46:02 +01:00
ItsDrike
d048c2a262
Also add ppy alias for default pyhton version
2021-12-18 03:21:23 +01:00
ItsDrike
754bbcbbd6
Also add ppy and ipy aliases
...
- py alias should always preferably use ipython, however if it isn't
available, it does fall back to the pure python interpreter.
- This is useful for running scripts since we would prefer ipython error
output, but also for debugging, etc.
- However since py will use ipython, we didn't have any good way to get
back to pure python unless it's typed in it's full form, which is too
long. Because of this, this adds `ppy` alias, which always points to
the pure python interpreter, no matter if ipython is available or not.
- This also adds a more explicit `ipy` alias, to clearly mark that we
want ipython.
2021-12-18 03:19:59 +01:00
ItsDrike
6f613a1ea5
Fix python aliases
2021-12-18 03:10:16 +01:00
ItsDrike
c606650c7d
Add vimtutor alias for nvim
2021-12-18 03:02:39 +01:00
ItsDrike
ac4b447bb5
Add aliases to quickly configure nvim
2021-12-18 03:02:26 +01:00
ItsDrike
a0dfc5fd09
Add aliases for different python versions
2021-12-18 03:02:02 +01:00
ItsDrike
4dd86fe4cd
Move to jetbrains mono font for alacritty
2021-12-18 00:17:13 +01:00
ItsDrike
bb0d435321
Add a note about dangers of using ↵ symbol
2021-12-15 22:09:43 +01:00
ItsDrike
fd57706a2f
Minor fixes
2021-12-15 22:08:59 +01:00
ItsDrike
39a66f0e30
Hide errors if git status fails
2021-12-15 22:08:01 +01:00
ItsDrike
52877996e4
Move nvim config to it's own repo and link module
2021-12-10 02:15:50 +01:00
ItsDrike
4b92916fd3
Add more comments
...
- Moooooreeee!
2021-12-10 00:55:40 +01:00
ItsDrike
2418031d0c
Don't use opt=true where it doesn't make sense
2021-12-10 00:55:07 +01:00
ItsDrike
8b1d872d37
Add git blame line nvim plugin
2021-12-10 00:53:08 +01:00
ItsDrike
656f29b333
Add comment
2021-12-09 17:39:03 +01:00
ItsDrike
c899a05c34
Remove unused function for debugging
2021-12-09 17:38:28 +01:00
ItsDrike
2fc82d8f37
Use '.' instead of '/' in require
2021-12-09 17:35:07 +01:00
ItsDrike
f0fbf261ec
Manually implement auto mass-renaming using LSP
2021-12-09 17:34:42 +01:00
ItsDrike
bd3ece59b7
Document and cleanup plugins
2021-12-09 01:17:25 +01:00
ItsDrike
b504f10f28
Ignore certain patterns in wildmenu
2021-12-09 01:16:50 +01:00
ItsDrike
cff3a5e70a
Improve docstring about foldlevel option
2021-12-09 01:16:25 +01:00
ItsDrike
d1ad56a69e
Remove simpylfold for python folding (handled by LSP)
2021-12-09 00:58:19 +01:00
ItsDrike
f7516182c3
Support auto-completion with LSP
2021-12-09 00:54:06 +01:00
ItsDrike
50a139f0f0
Add some more mappings
2021-12-09 00:39:13 +01:00
ItsDrike
46ca9189af
Add suport for nvim's LSP
2021-12-08 23:10:05 +01:00
ItsDrike
4eee9b4398
Add firenvim (nvim in browser) plugin
2021-12-08 22:34:30 +01:00
ItsDrike
f6c0441810
Add cheat.sh-vim plugin
2021-12-08 20:12:49 +01:00
ItsDrike
886b79e9a7
Add treesitter AST semantic highlighting
2021-12-08 20:10:40 +01:00
ItsDrike
b9afa56d96
Remove default coc-pyright args for flake8
...
- Default args cause problems when we have other custom flake8 rules
defined in files such as tox.ini since these project-specifc settings
were simply getting ignored in favor of the default args. We should
instead always rely on the project's settings
2021-12-07 22:26:32 +01:00
ItsDrike
5627b96fff
Rename pluginconf/ to plugins/settings/
2021-12-07 22:23:55 +01:00
ItsDrike
8350dc7926
Rewrite entire plugin management system
...
- This encapsulates all plugin related functionalities into the plugins/
folder (and pluginconfig/) instead of relying on utility file.
- It also renames utility/plugins.lua to a more sensible
plugins/packer.lua as it actually only applies for packer plugin
manager.
- The plugins.lua file is now split into 2 files, first holding the list
of all plugins plugins/plugin_list.lua and second one holding the
logic of bootstrapping and running startup on packer.
2021-12-07 22:17:56 +01:00
ItsDrike
b2214eb7af
Remove unused local
2021-12-07 22:16:00 +01:00
ItsDrike
7bfad9cb09
Set the colorscheme to default in theme
...
- We want to do this to activate the autocommands which modify certain
highlight styles. This colorscheme will be set to the proper one from
the plugin configuration anyway, which will override this, but in case
that plugin is no longer desired, we want to have some default there.
2021-12-07 22:13:59 +01:00
ItsDrike
9c8191bfa7
Move non-plugin settings to core/
2021-12-07 22:13:22 +01:00
ItsDrike
768764a899
Use utility module for keymap/abbrev functions
2021-12-06 22:49:03 +01:00
ItsDrike
950d19e1a0
Rewrite plugin management configuration
2021-12-06 22:28:32 +01:00
ItsDrike
61f619566a
Add buffer navigation mappings
2021-12-06 20:54:36 +01:00
ItsDrike
b0b6a12b23
Rewrite picom config
2021-12-06 15:38:45 +01:00
ItsDrike
9625f2b951
Use proper syntax highlighting in fenced codeblocks
2021-12-06 14:08:36 +01:00
ItsDrike
03431e5bc4
Remove unused g local variable definition
2021-12-06 14:08:11 +01:00
ItsDrike
5109286054
Move showmode option to theme.lua
2021-12-06 14:05:00 +01:00
ItsDrike
328adaec75
Enable shiftround
2021-12-06 13:59:10 +01:00
ItsDrike
3dfb695eaf
Split some settings to files section
2021-12-06 13:56:48 +01:00
ItsDrike
afa4c250c5
Move autoindent to indent settings
2021-12-06 13:54:55 +01:00
ItsDrike
88891bb2a4
Don't show current mode
2021-12-06 13:53:32 +01:00
ItsDrike
fbe51f22ef
Show tabs properly
2021-12-06 13:53:03 +01:00
ItsDrike
ea9a73f21a
Improve comments
2021-12-06 13:52:51 +01:00
ItsDrike
b06ced95b8
Rename base.lua to options.lua
2021-12-06 13:50:41 +01:00
ItsDrike
a4ad2c7026
Add nvim-dap
2021-12-06 13:19:16 +01:00
ItsDrike
dce7dd58d0
Switch package manager to packer
2021-12-06 13:18:36 +01:00
ItsDrike
c5baadf07f
Rename plugins.d/ to pluginconf/
2021-12-06 13:15:32 +01:00
ItsDrike
9aeb792628
Convert fzf.vim to fzf.lua
2021-12-06 12:44:42 +01:00
ItsDrike
e8fb4e3614
Move global functions to init.lua
2021-12-05 22:33:23 +01:00
ItsDrike
11baef383b
Override colorscheme's cursor line number color
2021-12-05 20:09:52 +01:00
ItsDrike
f1e9b37e24
Fix set-upstream alias
2021-12-04 02:40:44 +01:00
ItsDrike
0257190209
Support save mapping from insert mode
2021-12-04 00:43:05 +01:00
ItsDrike
1682cfd4ea
Add xmap function
2021-12-03 23:37:56 +01:00
ItsDrike
682a63b9d1
Automatically resize the terminal split
2021-12-03 23:37:44 +01:00
ItsDrike
325c74be91
Small xmobar redesign
2021-12-03 23:09:28 +01:00
ItsDrike
32fa0f518d
Add blank line for nicer formatting
2021-12-03 19:00:47 +01:00
ItsDrike
35e213aa39
Use nvim as editor, not vim
2021-12-03 18:58:42 +01:00
ItsDrike
ea6dc6594a
Add polyglot
2021-12-03 17:33:49 +01:00
ItsDrike
13c47143af
Add auth-log alias
2021-12-03 14:49:02 +01:00
ItsDrike
eb2d3ca2bd
Enable flake8 linting for coc-pyright
2021-12-03 14:45:55 +01:00
ItsDrike
ac438d1480
Add coc-fzf plugin
2021-12-03 14:42:27 +01:00
ItsDrike
cc7c8db10b
Run UpdateRemotePlugins after auto-installing plug
2021-12-03 14:41:16 +01:00
ItsDrike
16e9c61abd
Split load_plugin_file into 2 functions
2021-12-03 14:40:29 +01:00
ItsDrike
69db7bb4d2
Add unused semshi plugin config
2021-12-03 00:37:09 +01:00
ItsDrike
f8540e0b70
Add quickclone git alias
2021-12-02 17:31:04 +01:00
ItsDrike
b267b97c45
Add more git aliases
2021-12-01 19:58:56 +01:00
ItsDrike
bb7a2af9f9
Switch vim config to lua (Full rewrite)
2021-11-30 20:22:51 +01:00
ItsDrike
f0385c4961
Indent with spaces, not tabs
2021-11-30 10:22:20 +01:00
ItsDrike
c75c6fbd87
Remove python config source comment
2021-11-28 19:52:25 +01:00
ItsDrike
6bb055d42f
Add and reorder nvim mappings
2021-11-28 19:40:52 +01:00
ItsDrike
65529ffd1d
Add find and show merge commit aliases
2021-11-26 19:06:51 +01:00
ItsDrike
46f80b190b
Add shortcut for pcmanfm and lf
2021-11-25 21:13:36 +01:00
ItsDrike
2264da5a03
Remove trailing newline
2021-11-25 21:12:04 +01:00
ItsDrike
000a960006
Fix default 'X'-shaped cursor
2021-11-25 21:11:01 +01:00
ItsDrike
0619e887a3
Add lockscreen management script
2021-11-21 23:54:42 +01:00
ItsDrike
8b4be51ca0
Merge branch 'arch' of https://github.com/ItsDrike/dotfiles into arch
2021-11-14 20:59:22 +01:00
ItsDrike
9166b4c051
Update directory aliases
2021-11-14 20:58:43 +01:00
ItsDrike
6d85a4bc40
Fix cftodo alias
2021-11-14 20:57:43 +01:00
ItsDrike
82f60713d4
Add vim-like exist aliases
2021-11-14 20:54:54 +01:00
ItsDrike
2446789d25
Add support for terminal window swallowing
2021-11-14 20:54:15 +01:00
ItsDrike
4bc99d46b5
Fix ip-show alias
2021-10-22 13:19:20 +02:00
ItsDrike
900f5f2706
Add some app-specific xmonad settings
2021-10-15 20:14:11 +02:00
ItsDrike
93f1bd30f0
Use xsecurelock directly instead of DPMS trigger
2021-10-15 20:13:29 +02:00
ItsDrike
27df041884
Adjust xmonad window management shortcuts
2021-10-15 20:13:10 +02:00
ItsDrike
685b7fa387
Improve xmobar design from xmonad log hook
2021-10-15 20:11:11 +02:00
ItsDrike
b09912c42c
Use esc to stop vim search highlight
2021-10-11 13:43:11 +02:00
ItsDrike
32a22db8a8
Add vim-startify vim startpage
2021-10-03 18:56:33 +02:00
ItsDrike
b97d537b86
Improve vim plugins categories
2021-10-03 18:56:15 +02:00
ItsDrike
e898743503
Add some further XDG env variables
2021-10-03 10:10:40 +02:00
ItsDrike
cfe07183ee
Follow XDG base dir specs for nerdtree bookmarks
2021-10-03 10:10:13 +02:00
ItsDrike
76967ee3e4
Remove coc.vim from rc/ (there's one in plugins.d/)
2021-10-02 21:14:51 +02:00
ItsDrike
b5354fbf4c
Improve NERDTree settings
2021-09-25 02:44:24 +02:00
ItsDrike
8dedca10d2
Add a plugin for proper python folding
2021-09-25 02:43:22 +02:00
ItsDrike
ddc758b6e1
Add default folding settings
2021-09-25 02:42:36 +02:00
ItsDrike
cf79be3216
Add further coc settings
2021-09-25 02:41:56 +02:00
ItsDrike
b0060162f0
Update git signing key and email
2021-09-22 22:26:19 +02:00
ItsDrike
61d1e1269b
Start discord and element in the background
2021-09-16 23:20:20 +02:00
ItsDrike
216369feb1
Auto-wrap markdown text at 119 characters
2021-09-16 22:23:48 +02:00
ItsDrike
f601d345f9
Use coc for language IntelliSense completions
2021-09-15 18:47:58 +02:00
ItsDrike
d35a9d3e83
Fix tab expansion keybindings
2021-09-15 18:46:29 +02:00
ItsDrike
7016282d61
Run udiskie detached
2021-09-06 19:31:49 +02:00
ItsDrike
181f8129be
Add udiskie for simple device mounting
2021-09-06 05:01:26 +02:00
ItsDrike
0128ab129c
Add autostart directory
2021-09-06 04:57:27 +02:00
ItsDrike
83a2c679b5
Update dunst config
2021-09-06 04:16:21 +02:00
ItsDrike
482f5f0213
Replace links with w3m
2021-09-02 17:46:02 +02:00
ItsDrike
a26a3c4c78
Fix autostart
2021-09-02 17:38:48 +02:00
ItsDrike
8f5b8129f6
Add newsboat macros
2021-09-02 17:33:04 +02:00
ItsDrike
d17caa2bdf
Add newsboat config files
2021-09-02 17:18:52 +02:00
ItsDrike
fa7370a745
Add some nerd tree autocmds
...
Co-authored-by: jpie726 <53590846+jpie726@users.noreply.github.com>
2021-08-31 04:24:28 +02:00
ItsDrike
36b3bd57ca
Add default input.conf mpv config
2021-08-31 04:13:18 +02:00
ItsDrike
57ee2783eb
Disable airline in nerdtree
2021-08-31 03:22:21 +02:00
ItsDrike
fcc40600fb
Update mpv input config
2021-08-31 03:04:46 +02:00
ItsDrike
ac3fd001aa
Add bitcoin widget
2021-08-24 17:25:09 +02:00
ItsDrike
742f8f6382
Fix autostarting desktop apps with spaces
2021-08-24 15:40:24 +02:00
ItsDrike
f27836e5d1
Add video zooming keybinds
2021-08-24 02:31:30 +02:00
ItsDrike
1746b23375
Add flameshot config
2021-08-23 02:10:44 +02:00
ItsDrike
59ea70aef4
Show datetime on xsecurelock
2021-08-20 20:11:41 +02:00
ItsDrike
ee5e3a5fd1
Add cfxprofile aliase
2021-08-19 23:26:06 +02:00
ItsDrike
119b6562e2
Wrap bat previews to preview window width
2021-08-19 13:34:27 +02:00
ItsDrike
965f9029fb
Run xss-lock detached
2021-08-19 02:15:09 +02:00
ItsDrike
71c18ed1de
Add lock screen shortcut
2021-08-19 02:14:44 +02:00
ItsDrike
ef45a89ca4
Don't display hostname on lockscreen
2021-08-19 02:09:44 +02:00
ItsDrike
7651f5e7d3
Add screen locking support
2021-08-19 01:42:17 +02:00
ItsDrike
00780218bd
Add ability to use pixterm for img previews
2021-08-17 03:51:45 +02:00
ItsDrike
41522e8b0d
Start flameshot with X
2021-08-16 17:57:13 +02:00
ItsDrike
20afa6f2e5
Update shortcuts
2021-08-16 17:54:23 +02:00
ItsDrike
182a68612f
Don't blindly run editable github gist with bash
2021-08-16 17:31:26 +02:00
ItsDrike
1de5142b86
Update vim config
2021-08-16 03:19:56 +02:00
ItsDrike
bfebb33b29
Always enable numlock
2021-08-16 02:00:24 +02:00
ItsDrike
8effc29a97
Don't use dbus-launch with libdbus on arch
2021-08-16 01:45:44 +02:00
ItsDrike
669ec40e9d
Add vimwiki alias
2021-08-16 00:37:04 +02:00
ItsDrike
e0f8e0431b
Add vimwiki
2021-08-15 15:24:12 +02:00
ItsDrike
05e63ef139
Change ld alias to ldir (avoid conflicts)
2021-08-15 15:23:22 +02:00
ItsDrike
cf60ccb97e
Use lowercase A for $TERMINAL
2021-08-14 19:50:15 +02:00
ItsDrike
4f6e9f8127
Support milisecond precision
2021-08-13 14:04:20 +02:00
ItsDrike
ac8f461bc8
Move command runtime to left prompt
2021-08-13 12:31:39 +02:00
ItsDrike
77b4308c13
Add option to show command runtime
2021-08-13 12:31:10 +02:00
ItsDrike
a7b98a14a8
Map multimedia actions to more common keys
2021-08-09 16:10:36 +02:00
ItsDrike
9c1f8348ff
Make cd act as pushd
2021-08-06 02:11:37 +02:00
ItsDrike
dfcf61c1d9
Update alacritty colorscheme
2021-08-04 13:53:03 +02:00
ItsDrike
ba4f52b8a2
Run xmonad with dbus for discord notifications
2021-08-04 01:36:04 +02:00
ItsDrike
ddfe420cb0
Define TMOUT in .zshrc
2021-08-02 00:43:02 +02:00
ItsDrike
6d5bf3ac97
Add compositor start/kill shortcuts
2021-07-29 05:04:06 +02:00
ItsDrike
ad87763a8a
Move from scrot to flameshot (screenshtos)
2021-07-29 05:02:32 +02:00
ItsDrike
904e3ff1df
Remove autostart configuration
2021-07-28 05:31:36 +02:00
ItsDrike
4f6f4bc8e6
Add gtk config folders
2021-07-28 05:31:01 +02:00
ItsDrike
b3033e4329
Add XDG user-dirs config files
2021-07-28 05:26:08 +02:00
ItsDrike
b0cd53e47e
Don't leave visual mode after indenting
2021-07-27 02:50:50 +02:00
ItsDrike
672e52d4b1
Remove old previewer
2021-07-26 20:06:42 +02:00
ItsDrike
72023e777e
Improve file-preview implementation
2021-07-26 20:04:29 +02:00
ItsDrike
5d13b073ad
Add image previews to lf
2021-07-26 19:10:56 +02:00
ItsDrike
7b44531968
Remove zsh-you-should-use, causes issues
2021-07-25 17:15:45 +02:00
ItsDrike
9f50a4edfa
Add lf configuration
2021-07-25 17:14:31 +02:00
ItsDrike
1fadd7f1b2
Fix terminal env var typo
2021-07-24 18:26:21 +02:00
ItsDrike
a4e08bc977
Use dual_kawase picom bluring
2021-07-24 14:51:54 +02:00
ItsDrike
5917dc8d85
Use picom for transparency
2021-07-24 13:54:42 +02:00
ItsDrike
5bf013f25d
Disable xcompmgr, causes issues
2021-07-24 00:03:29 +02:00
ItsDrike
b327ae8336
Make alacritty transparent (0.9)
2021-07-24 00:01:53 +02:00
ItsDrike
88f418d223
Sort configs
2021-07-23 19:14:22 +02:00
ItsDrike
b573f98e14
Fix jump to last position
2021-07-23 19:14:04 +02:00
ItsDrike
a6ad237b7c
Remove cfvim alias, add gdc
2021-07-23 19:13:35 +02:00
ItsDrike
dd42a281e2
Add abbreviations
2021-07-23 18:33:57 +02:00
ItsDrike
41bbfbffb9
Add more vim mappings
2021-07-23 18:33:12 +02:00
ItsDrike
9f0061eaf3
Add you-should-use zsh plugin
2021-07-23 18:12:40 +02:00
ItsDrike
cc74d65b0a
Decentralize nvim config
2021-07-23 18:08:03 +02:00
ItsDrike
5e0fcc415b
Update zshrc
2021-07-23 18:06:44 +02:00
ItsDrike
0efe33b80d
Move z.lua to systemwide dir
2021-07-23 02:00:56 +02:00
ItsDrike
4988a0b970
Add autostart script from ~/.config/autostart
2021-07-22 22:21:27 +02:00
ItsDrike
fe61af8f62
Use xprofile to start necessary init apps
2021-07-22 22:20:53 +02:00
ItsDrike
dbd37392b8
Add dunst for notifications
2021-07-22 21:56:07 +02:00
ItsDrike
b1608241e1
Don't source /etc/profile in zshrc
2021-07-22 21:12:52 +02:00
ItsDrike
c55163d4ae
Alias j to z (from autojump)
2021-07-22 21:12:35 +02:00
ItsDrike
84c15ef496
Move PATH extension to profile
2021-07-22 00:16:41 +02:00
ItsDrike
7c291408e1
Update zsh extension sourcing
2021-07-20 23:50:19 +02:00
ItsDrike
051afb1573
Add zsh extensions as git modules
2021-07-20 23:43:48 +02:00
ItsDrike
36fc25b4ee
Add z.lua aliases
2021-07-20 23:20:18 +02:00
ItsDrike
54742fcd93
Add kernel aliases
2021-07-20 23:19:46 +02:00
ItsDrike
93bde27829
Remove pacman aliases
2021-07-20 23:19:17 +02:00
ItsDrike
8566d2cfc9
Use .zshenv to define env vars, not .zprofile
2021-07-20 23:18:50 +02:00
ItsDrike
1005ca8356
Update kybinds
2021-07-20 23:11:18 +02:00
ItsDrike
d448a66cef
Use ternary conditionals
2021-07-20 23:10:46 +02:00
ItsDrike
cd08fbd55d
Accept prepended zeroes for colors
2021-07-20 19:58:46 +02:00
ItsDrike
a3ed7ff347
Add PS1 anonymize function
2021-07-20 19:52:58 +02:00
ItsDrike
7c37651ee4
Add root account usage notice
2021-07-20 01:59:39 +02:00
ItsDrike
e74417219c
Add git merge alias
2021-07-20 01:36:23 +02:00
ItsDrike
39c21fffe3
Update aliases
2021-07-20 01:35:11 +02:00
ItsDrike
60b3da8d11
Fix SUDO_ASKPASS script path
2021-07-18 01:01:45 +02:00
ItsDrike
8983683495
Remove testing brightness shortcut
2021-07-18 00:04:01 +02:00
ItsDrike
9414530758
Fix manpage colors with bat
2021-07-17 22:58:26 +02:00
ItsDrike
ad62b8570d
Update comments
2021-07-16 13:15:00 +02:00
ItsDrike
41c35f8101
Rewrite xmobar config
2021-07-16 05:10:11 +02:00
ItsDrike
353270b2d6
Set wget hsts file
2021-07-15 04:35:54 +02:00
ItsDrike
6432e0d585
Add alacritty settings
2021-07-15 04:35:05 +02:00
ItsDrike
a60115e2dd
Further updates for trayer
2021-07-15 03:42:44 +02:00
ItsDrike
51aa4996ad
Update workspace order
2021-07-15 03:00:11 +02:00
ItsDrike
a88bea6ba2
Dynamically resize xmobar for trayer
2021-07-15 02:58:43 +02:00
ItsDrike
8edb36d42d
Fix SUDO_ASKPASS script path
2021-07-15 02:56:29 +02:00
ItsDrike
e126ce3bae
Update condition for startx
2021-07-14 19:33:11 +02:00
ItsDrike
6cd2d962ee
Define zootdir in profile and move .zshrc
2021-07-14 19:13:25 +02:00
ItsDrike
a385f09627
Start Xorg from profile in tty1
2021-07-14 19:12:51 +02:00
ItsDrike
a6161d402a
Define exports in profile, rename sh to shell
2021-07-14 19:11:50 +02:00
ItsDrike
ae96ec349d
Add more config aliases
2021-07-14 15:34:45 +02:00
ItsDrike
0c743e32e7
Update xmobar config
2021-07-14 15:33:21 +02:00
ItsDrike
6e94a8dd9f
Add xmonad config files
2021-07-14 15:15:53 +02:00
ItsDrike
378409131f
Link pki to .config
2021-07-14 15:13:42 +02:00
ItsDrike
293840aafa
Add X config files
2021-07-14 15:08:47 +02:00
ItsDrike
9cade487cb
Remove mozilla config
2021-07-14 15:06:17 +02:00
ItsDrike
80d6ed749c
Remove Code config
2021-07-14 15:04:31 +02:00
ItsDrike
bac20b6b9a
Remove terminator config
2021-07-14 15:04:17 +02:00
ItsDrike
e0f6272f8c
Respect XDG for vim info file
2021-07-14 15:04:03 +02:00
ItsDrike
ab51821a81
Remove network bridge config
2021-07-14 15:03:33 +02:00
ItsDrike
c9db62ee20
Remove GTK 1,2 folders
2021-07-14 15:03:14 +02:00
ItsDrike
504ee71fc2
Rename placeholders to .keep
2021-07-14 15:02:55 +02:00
ItsDrike
c249c80347
Remove GTK dirs
2021-07-14 15:02:17 +02:00
ItsDrike
239300e857
Wrap variables in RPS in {}
2021-07-14 15:01:17 +02:00
ItsDrike
b0488df402
Add xdg runtime dir
2021-07-14 15:00:09 +02:00
ItsDrike
33cccffc7d
Add scrolloff distances
2021-07-12 03:28:18 +02:00
ItsDrike
aae924f1a4
Add quick movement remaps to nvim
2021-07-12 03:19:36 +02:00
ItsDrike
87e8c0dfb0
Rename theme to prompt
2021-07-08 22:43:49 +02:00
ItsDrike
f64d19182b
Fix ip-show alias
2021-07-06 17:28:51 +02:00
ItsDrike
8a094ddd03
Update ip-show alias
2021-07-06 17:21:01 +02:00
ItsDrike
b0848fb41a
Don't override cat with bat
2021-06-13 01:30:03 +02:00
ItsDrike
930a21a812
Fix bash error
2021-06-13 01:16:18 +02:00
ItsDrike
c7d28ddcb6
Update env settings
2021-06-13 01:08:37 +02:00
ItsDrike
b449bcaaf1
Update some config files
2021-06-05 03:15:23 +02:00
ItsDrike
25babf331b
Update vim config
2021-05-24 14:14:26 +02:00
ItsDrike
defa6d949d
Switch final symbol to $ instead of»
2021-05-13 14:48:28 +02:00
ItsDrike
bdb24478b9
Fix cfvim alias to point to nvim config
2021-05-13 10:57:53 +02:00
ItsDrike
fd85f2ccff
Use XDG locations with fallback
2021-05-11 17:31:05 +02:00
ItsDrike
713ad7301e
Use default nvim locations
2021-05-11 17:26:37 +02:00
ItsDrike
872b8fcad6
Remove vim support in favor of nvim
2021-05-11 17:20:46 +02:00
ItsDrike
c08116ae5e
Restructure vimrc
2021-05-11 16:59:23 +02:00
ItsDrike
99b23bfcc6
Switch editor to neovim
2021-05-11 15:44:09 +02:00
ItsDrike
ca8a9ed1ec
Add wakatime plugin
2021-05-11 14:55:53 +02:00
ItsDrike
eea413f2de
Add symlink to vimrc for neovim
2021-05-11 12:34:15 +02:00
ItsDrike
42f358700a
automatically fallback to ASCII if TTY
2021-05-11 00:52:55 +02:00
ItsDrike
5fe3570508
Update vimrc - neovim compatibility
2021-05-11 00:40:56 +02:00
ItsDrike
148652b632
Make sure nvim takes precedence over vi/vim
2021-05-10 23:20:54 +02:00
ItsDrike
22a550804a
Switch from vundle to vim-plug
2021-05-10 23:15:09 +02:00
ItsDrike
8de802f73a
Update vimrc
2021-05-10 19:03:35 +02:00
ItsDrike
d270d211f6
Restructure & Update aliases
2021-05-10 19:03:18 +02:00
ItsDrike
b906b71912
Use ASCII only for error prompt in TTY
2021-05-06 17:20:31 +02:00
ItsDrike
e6677f1e1b
Move git prompt back after cwd
2021-05-03 19:10:47 +02:00
ItsDrike
beb09a592d
Don't enforce truecolor (breaks TTY vim)
2021-05-03 19:08:22 +02:00
ItsDrike
a5f96655ae
Make path shortening TTY compatible
2021-05-03 19:08:00 +02:00
ItsDrike
6a15b9c66d
Don't store git-credentials in home
2021-05-03 16:34:28 +00:00
ItsDrike
e9b074594b
Add backup alias
2021-05-03 16:00:25 +02:00
ItsDrike
55b663b545
Update aliases
2021-05-01 21:41:02 +02:00
ItsDrike
e3aa39ffc5
Update signing key id
2021-04-30 01:02:59 +02:00
ItsDrike
79f32e241d
Add handle for TTY prompt colors
2021-04-29 01:05:25 +02:00
ItsDrike
085c9d8629
Singify ssh/chroot prompt
2021-04-20 08:29:47 +02:00
ItsDrike
6c9585a4bf
Fallback on default ls if not exa
2021-04-19 19:27:12 +02:00
ItsDrike
4458c4f7ee
Add custom SSH prompt
2021-04-19 10:47:00 +02:00
ItsDrike
5e93de8f93
Improve theme
2021-04-14 20:40:33 +02:00
ItsDrike
5086c42d22
Update configuration
2021-04-12 15:49:06 +02:00
ItsDrike
10e6c267fd
Update aliases
2021-04-01 22:25:38 +02:00
ItsDrike
18e5f8b7ea
Update aliases
2021-04-01 22:14:40 +02:00
ItsDrike
44bbe50a29
Add overided directories to avoid errors
2021-04-01 15:23:02 +02:00
ItsDrike
e9a67fe4b5
Update aliases
2021-03-23 21:41:52 +00:00
ItsDrike
5d25d5444f
Update vimrc
2021-03-23 21:20:23 +00:00
ItsDrike
2611bd3b4f
Update keybinds
2021-03-23 20:57:53 +00:00
ItsDrike
b5a14fcd27
Update aliases
2021-03-23 20:19:01 +00:00
ItsDrike
70ee76a2be
Update keybinds
2021-03-23 20:18:46 +00:00
ItsDrike
51a193be98
Update theme
2021-03-23 20:18:34 +00:00
ItsDrike
9de00590d0
Update functions
2021-03-23 12:30:44 +01:00
ItsDrike
9110615621
Update aliases
2021-03-23 12:29:28 +01:00
ItsDrike
5a950ddfef
Update vimrc XDG paths (autocreation)
2021-03-09 21:44:08 +01:00
ItsDrike
595fd2fd69
Update aliases
2021-02-16 14:33:48 +01:00
ItsDrike
1d63c561a2
Add desktop launchers in autostart
2021-02-15 17:05:48 +01:00
ItsDrike
7f9ba81d28
Add network bridge config for KVM
2021-02-15 09:27:00 +01:00
ItsDrike
2e37f399df
Fix additional space without git repo
2021-01-29 10:38:37 +01:00
ItsDrike
e5f91b5ad0
Add vscode settings
2021-01-29 01:30:43 +01:00
ItsDrike
ba0bdefa6f
Improve git prompt function
2021-01-29 00:39:51 +01:00
ItsDrike
60920444f0
Include custom theme without oh-my-zsh requrement
2021-01-29 00:23:03 +01:00