config/qtile: remove emacs keybinds
This commit is contained in:
parent
a677e5b48b
commit
9f9a91c4a5
1 changed files with 2 additions and 7 deletions
|
@ -55,7 +55,7 @@ class Apps:
|
||||||
|
|
||||||
TERMINAL = guess_terminal(preference="kitty") # Set preference if necessary
|
TERMINAL = guess_terminal(preference="kitty") # Set preference if necessary
|
||||||
SHELL = "zsh"
|
SHELL = "zsh"
|
||||||
EDITOR = "emacsclient -c"
|
EDITOR = os.getenv("EDITOR", "vim")
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def terminal_command(cls, program, args=tuple(), *, terminal=None):
|
def terminal_command(cls, program, args=tuple(), *, terminal=None):
|
||||||
|
@ -437,12 +437,7 @@ keys = [
|
||||||
Key(
|
Key(
|
||||||
[Keys.SUPER, Keys.ALT], "e",
|
[Keys.SUPER, Keys.ALT], "e",
|
||||||
lazy.spawn(Apps.EDITOR),
|
lazy.spawn(Apps.EDITOR),
|
||||||
desc="Launch Emacs",
|
desc="Launch editor",
|
||||||
),
|
|
||||||
Key(
|
|
||||||
[Keys.SUPER, Keys.ALT, Keys.CONTROL], "e",
|
|
||||||
lazy.spawn("doom +everywhere"),
|
|
||||||
desc="Launch Emacs 'everywhere' window",
|
|
||||||
),
|
),
|
||||||
Key(
|
Key(
|
||||||
[Keys.SUPER, Keys.ALT], "d",
|
[Keys.SUPER, Keys.ALT], "d",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue