mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2023-02-13 20:55:19 -05:00
Fixing a minor issue.
This commit is contained in:
parent
fa5fc11530
commit
0b6a9882bc
8 changed files with 19 additions and 5 deletions
3
.bashrc
3
.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!
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ window:
|
|||
y: 6
|
||||
|
||||
# Spread additional padding evenly around the terminal content.
|
||||
#dynamic_padding: false
|
||||
dynamic_padding: false
|
||||
|
||||
# Window decorations
|
||||
#
|
||||
|
|
|
@ -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!
|
||||
|
||||
|
|
|
@ -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
|
||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
3
.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!
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue