about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2020-09-24 21:55:17 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2020-09-24 21:55:17 +0700
commitea3d643a067669a73557f0af203cf4e86bc4fc9d (patch)
tree5c128b8301b5012aaa5c7dcd98a5da12af4fba40
parent21e85821064dd444ed9a35e342c2ea220c50a6f6 (diff)
downloaddotfiles-ea3d643a067669a73557f0af203cf4e86bc4fc9d.tar.gz
Update 2020-09-24
-rw-r--r--awesome/.config/awesome/rc.lua4
-rw-r--r--ranger/.config/ranger/rifle.conf32
-rwxr-xr-xvim/.vim/vimrc2
3 files changed, 20 insertions, 18 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua
index 328e6c0..2a6d61d 100644
--- a/awesome/.config/awesome/rc.lua
+++ b/awesome/.config/awesome/rc.lua
@@ -167,7 +167,7 @@ vicious.register(mymemusage, vicious.widgets.mem,
                  function (widget, args)
                    return (" MEM%03d%%"):format(args[1])
                  end, 2)
-                 --
+
 -- Create a battery widget
 local mybattery_text = wibox.widget.textbox()
 vicious.register(mybattery_text, vicious.widgets.bat,
@@ -477,6 +477,8 @@ local globalkeys = awful.util.table.join(
             {description = "open Tor Browser", group = "launcher"}),
   awful.key({modkey}, "t", spawner"thunderbird",
             {description = "open Thunderbird", group = "launcher"}),
+  awful.key({modkey, "Shift"}, "t", spawner"transmission-gtk",
+            {description = "open Transmission", group = "launcher"}),
   awful.key({modkey}, "m", spawner"nheko",
             {description = "open nheko", group = "launcher"}),
   awful.key({modkey, "Shift"}, "g", spawner"gimp",
diff --git a/ranger/.config/ranger/rifle.conf b/ranger/.config/ranger/rifle.conf
index 98adc65..dd170ea 100644
--- a/ranger/.config/ranger/rifle.conf
+++ b/ranger/.config/ranger/rifle.conf
@@ -49,6 +49,22 @@
 # only running the current file even if you have marked multiple files.
 
 #-------------------------------------------
+# Misc
+#-------------------------------------------
+# Define the "editor" for text files as first action
+mime ^text,  label editor = $EDITOR -- "$@"
+mime ^text,  label pager  = "$PAGER" -- "$@"
+!mime ^text, label editor, ext xml|json|csv|tex|py|pl|rb|js|sh|php = $EDITOR -- "$@"
+!mime ^text, label pager,  ext xml|json|csv|tex|py|pl|rb|js|sh|php = "$PAGER" -- "$@"
+
+ext 1                         = man "$1"
+ext s[wmf]c, has zsnes, X     = zsnes "$1"
+ext s[wmf]c, has snes9x-gtk,X = snes9x-gtk "$1"
+ext nes, has fceux, X         = fceux "$1"
+ext exe                       = wine "$1"
+name ^[mM]akefile$            = make
+
+#-------------------------------------------
 # Websites
 #-------------------------------------------
 # Rarely installed browsers get higher priority; It is assumed that if you
@@ -79,22 +95,6 @@ ext x?html?, has links,           terminal = links "$@"
 ext x?html?, has lynx,            terminal = lynx -- "$@"
 ext x?html?, has w3m,             terminal = w3m "$@"
 
-#-------------------------------------------
-# Misc
-#-------------------------------------------
-# Define the "editor" for text files as first action
-mime ^text,  label editor = $EDITOR -- "$@"
-mime ^text,  label pager  = "$PAGER" -- "$@"
-!mime ^text, label editor, ext xml|json|csv|tex|py|pl|rb|js|sh|php = $EDITOR -- "$@"
-!mime ^text, label pager,  ext xml|json|csv|tex|py|pl|rb|js|sh|php = "$PAGER" -- "$@"
-
-ext 1                         = man "$1"
-ext s[wmf]c, has zsnes, X     = zsnes "$1"
-ext s[wmf]c, has snes9x-gtk,X = snes9x-gtk "$1"
-ext nes, has fceux, X         = fceux "$1"
-ext exe                       = wine "$1"
-name ^[mM]akefile$            = make
-
 #--------------------------------------------
 # Code
 #-------------------------------------------
diff --git a/vim/.vim/vimrc b/vim/.vim/vimrc
index 75ba1d7..7ba9fbd 100755
--- a/vim/.vim/vimrc
+++ b/vim/.vim/vimrc
@@ -22,7 +22,7 @@ augroup vimrc
   autocmd BufNewFile,BufRead *.m setlocal filetype=octave
   autocmd FileType asm,c,h,go,glsl
         \ setlocal cindent cinoptions=(0 noexpandtab shiftwidth=8
-  autocmd FileType vim,sh,lua,tex,cmake,cpp,mysql,html,octave,pascal
+  autocmd FileType vim,sh,lua,tex,cmake,cpp,plantuml,mysql,html,octave,pascal
         \ setlocal shiftwidth=2
   autocmd FileType rst setlocal shiftwidth=3
   autocmd FileType java setlocal omnifunc=javacomplete#Complete