diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2020-07-26 16:38:01 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2020-07-26 16:38:01 +0700 |
commit | 8a170f79518f66411bcd983a241ecbeda22980bf (patch) | |
tree | 5914fee9154dd03c8d46297a391cce99247e3377 /awesome | |
parent | 8aad92d257a67b16c55c79e295236b058b52ae83 (diff) | |
download | dotfiles-8a170f79518f66411bcd983a241ecbeda22980bf.tar.gz |
Update 2020-07-26
Diffstat (limited to 'awesome')
-rw-r--r-- | awesome/.config/awesome/rc.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua index 8cbd05a..5509504 100644 --- a/awesome/.config/awesome/rc.lua +++ b/awesome/.config/awesome/rc.lua @@ -57,6 +57,7 @@ local python2 = terminal .. " -e python2" local guile = terminal .. " -e guile" local clojure = terminal .. " -e clojure" local emacs = "emacs" +local netrw = terminal .. " -e vim -cEx" local slock_suspend = "slock systemctl --ignore-inhibitors suspend" -- Audacious media player @@ -464,7 +465,7 @@ local globalkeys = awful.util.table.join( {description = "open a terminal", group = "launcher"}), awful.key({modkey, "Shift"}, "x", spawner(root_terminal), {description = "open a root terminal", group = "launcher"}), - awful.key({modkey}, "v", spawner(editor), + awful.key({modkey}, "v", spawner(netrw), {description = "open GVim", group = "launcher"}), awful.key({modkey}, "e", spawner(emacs), {description = "open Emacs", group = "launcher"}), |