diff options
author | Raphael McSinyx <vn.mcsinyx@gmail.com> | 2017-05-29 21:47:51 +0700 |
---|---|---|
committer | Raphael McSinyx <vn.mcsinyx@gmail.com> | 2017-05-29 21:47:51 +0700 |
commit | 1b1f8f5b5ed00684e59168dd4bc2fb0348d0eac6 (patch) | |
tree | e67cdb5c824e85d714822b41b051f177fc67465a | |
parent | bd2ab43fc68464d9502d04ca2f9d005ff19764ef (diff) | |
download | dotfiles-1b1f8f5b5ed00684e59168dd4bc2fb0348d0eac6.tar.gz |
Update 2017-05-29
-rw-r--r-- | awesome/.config/awesome/rc.lua | 7 | ||||
-rw-r--r-- | dev/.gitconfig (renamed from git/.config/git/config) | 4 | ||||
-rw-r--r-- | dev/.pypirc | 6 |
3 files changed, 14 insertions, 3 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua index 85ac9cd..4c762a4 100644 --- a/awesome/.config/awesome/rc.lua +++ b/awesome/.config/awesome/rc.lua @@ -357,10 +357,11 @@ globalkeys = awful.util.table.join( {description = "open a root terminal", group = "launcher"}), awful.key({modkey}, "v", function() awful.spawn(editor) end, {description = "open GVim", group = "launcher"}), - awful.key({modkey}, "b", function() awful.spawn("torbrowser-launcher") end, + awful.key({modkey}, "b", function() awful.spawn("firefox") end, + {description = "open Firefox", group = "launcher"}), + awful.key({modkey, "Shift"}, "b", + function() awful.spawn("torbrowser-launcher") end, {description = "open Tor Browser", group = "launcher"}), - awful.key({modkey, "Shift"}, "b", function() awful.spawn("firefox-esr") end, - {description = "open Firefox ESR", group = "launcher"}), awful.key({modkey}, "r", function() awful.spawn(ranger) end, {description = "open ranger file manager", group = "launcher"}), awful.key({modkey}, "p", function() awful.spawn(python) end, diff --git a/git/.config/git/config b/dev/.gitconfig index ba6e496..8cf14e9 100644 --- a/git/.config/git/config +++ b/dev/.gitconfig @@ -1,5 +1,9 @@ [user] email = vn.mcsinyx@gmail.com name = Raphael McSinyx +[diff] + tool = vimdif + guitool = gvimdif [github] user = McSinyx + diff --git a/dev/.pypirc b/dev/.pypirc new file mode 100644 index 0000000..7a3ed4b --- /dev/null +++ b/dev/.pypirc @@ -0,0 +1,6 @@ +[distutils] +index-servers=pypi + +[pypi] +repository = https://upload.pypi.org/legacy/ +username = McSinyx |