mirror of
https://github.com/Foltik/dotfiles
synced 2025-02-08 11:24:15 -05:00
Merge branch 'master' of github.com:foltik/dotfiles
This commit is contained in:
commit
cbc1a4932f
3
lain/.bash_profile
Normal file
3
lain/.bash_profile
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
|
||||||
|
exec startx
|
||||||
|
fi
|
7
lain/.bashrc
Normal file
7
lain/.bashrc
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# If not running interactively, don't do anything
|
||||||
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
|
# Unless we are running bash with a command explicitly (-c), drop into fish
|
||||||
|
if [ -z "$BASH_EXECUTION_STRING" ]; then
|
||||||
|
exec fish
|
||||||
|
fi
|
7
lain/.config/fish/config.fish
Normal file
7
lain/.config/fish/config.fish
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
### Environment Variables ###
|
||||||
|
set -U fish_user_paths ~/.local/bin
|
||||||
|
# Use all cores for make by default
|
||||||
|
set -gx MAKEFLAGS -j(nproc)
|
||||||
|
# TTY for gpg pinentry
|
||||||
|
set -gx GPG_TTY (tty)
|
||||||
|
gpg-connect-agent updatestartuptty /bye >/dev/null
|
@ -1,2 +1,6 @@
|
|||||||
|
EDITOR DEFAULT="nvim"
|
||||||
SSH_AGENT_PID DEFAULT=
|
SSH_AGENT_PID DEFAULT=
|
||||||
SSH_AUTH_SOCK DEFAULT="${XDG_RUNTIME_DIR}/gnupg/S.gpg-agent.ssh"
|
SSH_AUTH_SOCK DEFAULT="${XDG_RUNTIME_DIR}/gnupg/S.gpg-agent.ssh"
|
||||||
|
GTK_IM_MODULE DEFAULT="ibus"
|
||||||
|
XMODIFIERS DEFAULT="@im=ibus"
|
||||||
|
QT_IM_MODULE DEFAULT="ibus"
|
||||||
|
Loading…
Reference in New Issue
Block a user