From ea3d643a067669a73557f0af203cf4e86bc4fc9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Gia=20Phong?= Date: Thu, 24 Sep 2020 21:55:17 +0700 Subject: [PATCH] Update 2020-09-24 --- awesome/.config/awesome/rc.lua | 4 +++- ranger/.config/ranger/rifle.conf | 32 ++++++++++++++++---------------- vim/.vim/vimrc | 2 +- 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 @@ -48,6 +48,22 @@ # Note: When using rifle in ranger, there is an additional flag "c" for # 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 #------------------------------------------- @@ -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