diff --git a/apps/neovim/plugin-manager.vim b/apps/neovim/plugin-manager.vim new file mode 100644 index 0000000..e9b5b4b --- /dev/null +++ b/apps/neovim/plugin-manager.vim @@ -0,0 +1,15 @@ +" install plugin manager if needed +augroup PluginManagerInstaller + if has('nvim') + if empty(glob('~/.config/nvim/autoload/plug.vim')) + silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim + autocmd VimEnter * PlugInstall + endif + else + if empty(glob('~/.vim/autoload/plug.vim')) + silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim + autocmd VimEnter * PlugInstall + endif + end +augroup End + diff --git a/de/xprofile b/de/xprofile index 35ae894..7979182 100644 --- a/de/xprofile +++ b/de/xprofile @@ -29,7 +29,7 @@ if command -v xss-lock >/dev/null 2>&1; then fi if command -v redshift >/dev/null 2>&1; then - redshift & + redshift -r -l 39.0997:-94.5786 -t 6500K:3000K & fi if [ -f "$HOME/.env_xprofile" ]; then diff --git a/shell/aliases b/shell/aliases index 00d75ac..12e4b9d 100644 --- a/shell/aliases +++ b/shell/aliases @@ -104,7 +104,7 @@ alias sctl="sudo systemctl" alias btctl="sudo bluetoothctl" alias pt="htop -t" # experimental htop tree-view-by-default alias resrc="source \$HOME/.bashrc" -alias redshift="redshift -l 39.0997:-94.5786" +alias redshift="redshift -r -l 39.0997:-94.5786 -t 6500K:2500K" alias gpmdpe="electron --app=/usr/share/gpmdp/resources/app.asar" alias t="task"