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
|
||||
SHELL = "zsh"
|
||||
EDITOR = "emacsclient -c"
|
||||
EDITOR = os.getenv("EDITOR", "vim")
|
||||
|
||||
@classmethod
|
||||
def terminal_command(cls, program, args=tuple(), *, terminal=None):
|
||||
|
@ -437,12 +437,7 @@ keys = [
|
|||
Key(
|
||||
[Keys.SUPER, Keys.ALT], "e",
|
||||
lazy.spawn(Apps.EDITOR),
|
||||
desc="Launch Emacs",
|
||||
),
|
||||
Key(
|
||||
[Keys.SUPER, Keys.ALT, Keys.CONTROL], "e",
|
||||
lazy.spawn("doom +everywhere"),
|
||||
desc="Launch Emacs 'everywhere' window",
|
||||
desc="Launch editor",
|
||||
),
|
||||
Key(
|
||||
[Keys.SUPER, Keys.ALT], "d",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue