Change editor from emacsclient back to emacs

This commit is contained in:
Sravan Balaji
2024-04-30 17:05:33 -04:00
parent ecd5ddaeed
commit 4891b2a358
5 changed files with 8 additions and 12 deletions

View File

@@ -117,7 +117,7 @@ if ! shopt -oq posix; then
fi
# ENVIRONMENT VARIABLES
export EDITOR="emacsclient -c"
export EDITOR="emacs"
export TERM=xterm-256color
export QT_STYLE_OVERRIDE=kvantum
export XDG_CONFIG_HOME=$HOME/.config

View File

@@ -38,7 +38,7 @@
untrack = rm --cache --
[core]
# Emacs
editor = "emacsclient -c"
editor = "emacs"
# Don't consider trailing space change as a cause for merge conflicts
whitespace = -trailing-space
[diff]

View File

@@ -10,7 +10,6 @@ declare -a startup_array=(\
"/usr/bin/redshift -x" \ # Redshift Blue Light Filter
"/usr/bin/unclutter" \ # Hide Mouse Cursor
"/usr/bin/easyeffects --gapplication-service" \ # Easy Effects PipeWire Plugins
"/usr/bin/emacs --daemon" \ # Emacs Daemon
)
declare -a kill_startup_array=(\
@@ -24,7 +23,6 @@ declare -a kill_startup_array=(\
"pkill redshift" \ # Redshift Blue Light Filter
"pkill unclutter" \ # Hide Mouse Cursor
"pkill easyeffects" \ # Easy Effects PipeWire Plugins
"pkill emacs" \ # Emacs Daemon
)
declare -a delay_array=(\

View File

@@ -1,8 +1,8 @@
#!/usr/bin/env bash
export TERM=xterm-256color # Sets the terminal type
export SHELL=/usr/bin/fish # Preferred shell
export EDITOR="emacsclient -c" # Default editor
export GIT_EDITOR="emacsclient -c" # 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

View File

@@ -344,7 +344,7 @@ Things to ignore in dotfiles git repo.
untrack = rm --cache --
[core]
# Emacs
editor = "emacsclient -c"
editor = "emacs"
# Don't consider trailing space change as a cause for merge conflicts
whitespace = -trailing-space
[diff]
@@ -4941,7 +4941,7 @@ if ! shopt -oq posix; then
fi
# ENVIRONMENT VARIABLES
export EDITOR="emacsclient -c"
export EDITOR="emacs"
export TERM=xterm-256color
export QT_STYLE_OVERRIDE=kvantum
export XDG_CONFIG_HOME=$HOME/.config
@@ -9450,8 +9450,8 @@ Host gitea.sravanbalaji.com
#+BEGIN_SRC shell :shebang #!/usr/bin/env bash :tangle .xinitrc
export TERM=xterm-256color # Sets the terminal type
export SHELL=/usr/bin/fish # Preferred shell
export EDITOR="emacsclient -c" # Default editor
export GIT_EDITOR="emacsclient -c" # 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
@@ -9659,7 +9659,6 @@ declare -a startup_array=(\
"/usr/bin/redshift -x" \ # Redshift Blue Light Filter
"/usr/bin/unclutter" \ # Hide Mouse Cursor
"/usr/bin/easyeffects --gapplication-service" \ # Easy Effects PipeWire Plugins
"/usr/bin/emacs --daemon" \ # Emacs Daemon
)
declare -a kill_startup_array=(\
@@ -9673,7 +9672,6 @@ declare -a kill_startup_array=(\
"pkill redshift" \ # Redshift Blue Light Filter
"pkill unclutter" \ # Hide Mouse Cursor
"pkill easyeffects" \ # Easy Effects PipeWire Plugins
"pkill emacs" \ # Emacs Daemon
)
declare -a delay_array=(\