Emacs GUI Default Editor, Picom Full-Screen Disable, & Qbittorrent Theme
- Change default editor and git editor to gui emacs - Add neofetch to bash, zsh, and fish shell prompts - Update picom config to disable when program is in full-screen mode - Add dracula-qbittorrent theme submodule
This commit is contained in:
5
.bashrc
5
.bashrc
@@ -120,7 +120,10 @@ fi
|
||||
alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'
|
||||
|
||||
# ENVIRONMENT VARIABLES
|
||||
export EDITOR="code -w"
|
||||
export EDITOR="emacs"
|
||||
export TERM=xterm-256color
|
||||
export QT_STYLE_OVERRIDE=kvantum
|
||||
export XDG_CONFIG_HOME=$HOME/.config
|
||||
|
||||
# Run neofetch
|
||||
neofetch
|
||||
|
Submodule .config/emacs updated: c3374c310c...e24d5057db
@@ -342,6 +342,10 @@ refresh-rate = 0
|
||||
# when redirecting/unredirecting windows. paint-on-overlay may make the flickering less obvious.
|
||||
#
|
||||
# unredir-if-possible = false
|
||||
unredir-if-possible = true;
|
||||
# unredir-if-possible-exclude = [
|
||||
# "class_g = 'looking-glass-client' && !focused"
|
||||
# ]
|
||||
|
||||
# Delay before unredirecting the window, in milliseconds. Defaults to 0.
|
||||
# unredir-if-possible-delay = 0
|
||||
|
@@ -36,7 +36,7 @@
|
||||
untrack = rm --cache --
|
||||
[core]
|
||||
# Emacs
|
||||
editor = "emacs -nw"
|
||||
editor = "emacs"
|
||||
# Don't consider trailing space change as a cause for merge conflicts
|
||||
whitespace = -trailing-space
|
||||
[diff]
|
||||
|
4
.gitmodules
vendored
4
.gitmodules
vendored
@@ -62,3 +62,7 @@
|
||||
path = .xmonad
|
||||
url = git@github.com:balajsra/xmonad.git
|
||||
branch = master
|
||||
[submodule ".themes/dracula-qbittorrent"]
|
||||
path = .themes/dracula-qbittorrent
|
||||
url = git@github.com:dracula/qbittorrent.git
|
||||
branch = master
|
||||
|
Submodule .themes/dracula-gtk updated: 1bb0e84e39...24134877e0
1
.themes/dracula-qbittorrent
Submodule
1
.themes/dracula-qbittorrent
Submodule
Submodule .themes/dracula-qbittorrent added at 3b8bc6f5ad
Submodule .vim/pack/themes/start/dracula updated: d21059cd59...869f70a760
4
.xinitrc
4
.xinitrc
@@ -1,8 +1,8 @@
|
||||
#!/bin/sh
|
||||
export TERM=xterm-256color # Sets the terminal type
|
||||
export SHELL=/usr/bin/fish # Preferred shell
|
||||
export EDITOR="emacs -nw" # Default editor
|
||||
export GIT_EDITOR="emacs -nw" # Default git editor
|
||||
export EDITOR="emacs" # Default editor
|
||||
export GIT_EDITOR="emacs" # Default git editor
|
||||
export BROWSER=vivaldi-stable # Web Browser
|
||||
export XDG_CONFIG_HOME=$HOME/.config # Set Config directory
|
||||
export QT_QPA_PLATFORMTHEME=qt5ct # QGtkStyle
|
||||
|
2
.xmonad
2
.xmonad
Submodule .xmonad updated: 1acc6a0755...8c5c283da5
2
.zshrc
2
.zshrc
@@ -185,5 +185,5 @@ alias tb='nc termbin.com 9999'
|
||||
# Set your countries like --country France --country Germany -- or more.
|
||||
alias upd='sudo reflector --latest 5 --age 2 --fastest 5 --protocol https --sort rate --save /etc/pacman.d/mirrorlist && cat /etc/pacman.d/mirrorlist && sudo pacman -Syu && sudo updatedb'
|
||||
|
||||
## Run neofetch
|
||||
# Run neofetch
|
||||
neofetch
|
||||
|
17
README.org
17
README.org
@@ -113,7 +113,7 @@ Pull and update submodules
|
||||
untrack = rm --cache --
|
||||
[core]
|
||||
# Emacs
|
||||
editor = "emacs -nw"
|
||||
editor = "emacs"
|
||||
# Don't consider trailing space change as a cause for merge conflicts
|
||||
whitespace = -trailing-space
|
||||
[diff]
|
||||
@@ -1979,6 +1979,10 @@ Pull and update submodules
|
||||
# when redirecting/unredirecting windows. paint-on-overlay may make the flickering less obvious.
|
||||
#
|
||||
# unredir-if-possible = false
|
||||
unredir-if-possible = true;
|
||||
# unredir-if-possible-exclude = [
|
||||
# "class_g = 'looking-glass-client' && !focused"
|
||||
# ]
|
||||
|
||||
# Delay before unredirecting the window, in milliseconds. Defaults to 0.
|
||||
# unredir-if-possible-delay = 0
|
||||
@@ -3368,10 +3372,13 @@ Pull and update submodules
|
||||
alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'
|
||||
|
||||
# ENVIRONMENT VARIABLES
|
||||
export EDITOR="code -w"
|
||||
export EDITOR="emacs"
|
||||
export TERM=xterm-256color
|
||||
export QT_STYLE_OVERRIDE=kvantum
|
||||
export XDG_CONFIG_HOME=$HOME/.config
|
||||
|
||||
# Run neofetch
|
||||
neofetch
|
||||
#+end_src
|
||||
*** Zsh
|
||||
|
||||
@@ -3563,7 +3570,7 @@ Pull and update submodules
|
||||
# Set your countries like --country France --country Germany -- or more.
|
||||
alias upd='sudo reflector --latest 5 --age 2 --fastest 5 --protocol https --sort rate --save /etc/pacman.d/mirrorlist && cat /etc/pacman.d/mirrorlist && sudo pacman -Syu && sudo updatedb'
|
||||
|
||||
## Run neofetch
|
||||
# Run neofetch
|
||||
neofetch
|
||||
#+end_src
|
||||
|
||||
@@ -6402,8 +6409,8 @@ Configuration for Alacritty, the GPU enhanced terminal emulator.
|
||||
#+begin_src shell :shebang #!/bin/sh :tangle .xinitrc
|
||||
export TERM=xterm-256color # Sets the terminal type
|
||||
export SHELL=/usr/bin/fish # Preferred shell
|
||||
export EDITOR="emacs -nw" # Default editor
|
||||
export GIT_EDITOR="emacs -nw" # Default git editor
|
||||
export EDITOR="emacs" # Default editor
|
||||
export GIT_EDITOR="emacs" # Default git editor
|
||||
export BROWSER=vivaldi-stable # Web Browser
|
||||
export XDG_CONFIG_HOME=$HOME/.config # Set Config directory
|
||||
export QT_QPA_PLATFORMTHEME=qt5ct # QGtkStyle
|
||||
|
Reference in New Issue
Block a user