diff --git a/.bashrc b/.bashrc index 01caed1..b6fbfce 100644 --- a/.bashrc +++ b/.bashrc @@ -13,6 +13,9 @@ export ALTERNATE_EDITOR="" # setting for emacsclient export EDITOR="emacsclient -t -a ''" # $EDITOR use Emacs in terminal export VISUAL="emacsclient -c -a emacs" # $VISUAL use Emacs in GUI mode +### EXPORTS for dmscripts +export DMTERM="emacsclient -c -a emacs" + ### SET MANPAGER ### Uncomment only one of these! diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index 9e26d6a..2d049c2 100755 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -38,7 +38,7 @@ window: y: 6 # Spread additional padding evenly around the terminal content. - #dynamic_padding: false + dynamic_padding: false # Window decorations # diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 558768e..7c48f95 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -18,6 +18,9 @@ set TERM "xterm-256color" # Sets the terminal type set EDITOR "emacsclient -t -a ''" # $EDITOR use Emacs in terminal set VISUAL "emacsclient -c -a emacs" # $VISUAL use Emacs in GUI mode +### EXPORTS for dmscripts +set DMTERM "emacsclient -c -a emacs" + ### SET MANPAGER ### Uncomment only one of these! diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 155c20b..40cd6f7 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -195,6 +195,11 @@ map tt :vnew term://fish set mouse=nicr set mouse=a +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +" => Fix Sizing Bug With Alacritty Terminal +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +autocmd VimEnter * :silent exec "!kill -s SIGWINCH $PPID" + """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " => Splits and Tabbed Files """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" diff --git a/.config/xmobar/xmobarrc0 b/.config/xmobar/xmobarrc0 index 487e04c..5940ed0 100755 --- a/.config/xmobar/xmobarrc0 +++ b/.config/xmobar/xmobarrc0 @@ -13,7 +13,7 @@ Config { font = "xft:Ubuntu:weight=bold:pixelsize=11:antialias=true:hinting=t , hideOnStart = False , allDesktops = True , persistent = True - , iconRoot = "~/.xmonad/xpm/" -- default: "." + , iconRoot = "/home/dt/.xmonad/xpm/" -- default: "." , commands = [ -- Time and date Run Date "\xf133 %b %d %Y - (%H:%M) " "date" 50 diff --git a/.config/xmobar/xmobarrc1 b/.config/xmobar/xmobarrc1 index 62e53a1..30aaeee 100755 --- a/.config/xmobar/xmobarrc1 +++ b/.config/xmobar/xmobarrc1 @@ -13,8 +13,8 @@ Config { font = "xft:Ubuntu:weight=bold:pixelsize=11:antialias=true:hinting=t , hideOnStart = False , allDesktops = True , persistent = True - , iconRoot = "~/.xmonad/xpm/" -- default: "." - , commands = [ + , iconRoot = "/home/dt/.xmonad/xpm/" -- default: "." + , commands = [ -- Time and date Run Date "\xf133 %b %d %Y - (%H:%M) " "date" 50 -- Network up and down diff --git a/.config/xmobar/xmobarrc2 b/.config/xmobar/xmobarrc2 index b9bb55e..f286307 100755 --- a/.config/xmobar/xmobarrc2 +++ b/.config/xmobar/xmobarrc2 @@ -13,7 +13,7 @@ Config { font = "xft:Ubuntu:weight=bold:pixelsize=11:antialias=true:hinting=t , hideOnStart = False , allDesktops = True , persistent = True - , iconRoot = "~/.xmonad/xpm/" -- default: "." + , iconRoot = "/home/dt/.xmonad/xpm/" -- default: "." , commands = [ -- Time and date Run Date "\xf133 %b %d %Y - (%H:%M) " "date" 50 diff --git a/.zshrc b/.zshrc index d473b97..fbbf1fd 100644 --- a/.zshrc +++ b/.zshrc @@ -11,6 +11,9 @@ export HISTORY_IGNORE="(ls|cd|pwd|exit|sudo reboot|history|cd -|cd ..)" export EDITOR="emacsclient -t -a ''" # $EDITOR use Emacs in terminal export VISUAL="emacsclient -c -a emacs" # $VISUAL use Emacs in GUI mode +### EXPORTS for dmscripts +export DMTERM="emacsclient -c -a emacs" + ### SET MANPAGER ### Uncomment only one of these!