More notes
This commit is contained in:
parent
da496b7f0c
commit
85eab2155c
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,7 +3,6 @@
|
|||
*.pid
|
||||
*.tmp
|
||||
*.secret
|
||||
/.curenv
|
||||
|
||||
# TODO: should be unnecessary once color generation is homegrown
|
||||
/colors/gen/vendor
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
scriptencoding utf8
|
||||
scriptencoding utf-8
|
||||
set fileencoding=utf8
|
||||
set encoding=utf8
|
||||
|
||||
" ALE completeopt recommendation
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
!/usr/bin/env bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
export XDG_CONFIG_HOME="$HOME/.config"
|
||||
export DOTFILES_PATH="$XDG_CONFIG_HOME/dotfiles"
|
||||
|
@ -19,10 +19,6 @@ if [[ "${TERM%%-*}" = 'linux' ]]; then
|
|||
[[ -s "$c" ]] && . "$c"
|
||||
fi
|
||||
|
||||
# load our shell colors
|
||||
c="$DOTFILES_PATH/bin/lib/colors/shell"
|
||||
[[ -s "$c" ]] && . "$c"
|
||||
|
||||
# prevents some Java GUI apps from not working or rendering properly due to
|
||||
# using wacky window managers
|
||||
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||
|
|
|
@ -5,6 +5,7 @@ function fish_user_key_bindings
|
|||
fish_vi_key_bindings
|
||||
|
||||
set vi_esc "if commandline -P; commandline -f cancel; else; set fish_bind_mode default; commandline -f backward-char force-repaint; end"
|
||||
|
||||
bind -M insert jk $vi_esc
|
||||
bind -M insert Jk $vi_esc
|
||||
bind -M insert JK $vi_esc
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
pacaur -Syyu --noconfirm --noedit
|
||||
|
||||
# TODO: update kernel with a flag?
|
||||
# yes | pacman -Syu && kexec -l --initrd=/boot/initramfs-linux.img /boot/vmlinuz-linux && kexec -e
|
||||
|
|
Reference in a new issue