Fixing a minor issue.

This commit is contained in:
Derek Taylor 2021-04-25 18:24:22 -05:00
parent fa5fc11530
commit 0b6a9882bc
8 changed files with 19 additions and 5 deletions

View File

@ -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!

View File

@ -38,7 +38,7 @@ window:
y: 6
# Spread additional padding evenly around the terminal content.
#dynamic_padding: false
dynamic_padding: false
# Window decorations
#

View File

@ -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!

View File

@ -195,6 +195,11 @@ map <Leader>tt :vnew term://fish<CR>
set mouse=nicr
set mouse=a
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Fix Sizing Bug With Alacritty Terminal
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
autocmd VimEnter * :silent exec "!kill -s SIGWINCH $PPID"
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Splits and Tabbed Files
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

View File

@ -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 "<fn=1>\xf133</fn> %b %d %Y - (%H:%M) " "date" 50

View File

@ -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 "<fn=1>\xf133</fn> %b %d %Y - (%H:%M) " "date" 50
-- Network up and down

View File

@ -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 "<fn=1>\xf133</fn> %b %d %Y - (%H:%M) " "date" 50

3
.zshrc
View File

@ -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!