Update 2019-03-28

This commit is contained in:
Nguyễn Gia Phong 2019-03-28 11:34:56 +07:00
parent 99f6a9203f
commit b06aecea34
4 changed files with 6 additions and 2 deletions

View file

@ -55,6 +55,7 @@ local ranger = "x-terminal-emulator -e ranger"
local python3 = "x-terminal-emulator -e python3" local python3 = "x-terminal-emulator -e python3"
local perl6 = "x-terminal-emulator -e perl6" local perl6 = "x-terminal-emulator -e perl6"
local guile = "x-terminal-emulator -e guile" local guile = "x-terminal-emulator -e guile"
local emacs = "x-terminal-emulator -e emacs -nw"
local slock_suspend = "slock systemctl --ignore-inhibitors suspend" local slock_suspend = "slock systemctl --ignore-inhibitors suspend"
-- Audacious media player -- Audacious media player
@ -441,7 +442,7 @@ local globalkeys = awful.util.table.join(
{description = "open a root terminal", group = "launcher"}), {description = "open a root terminal", group = "launcher"}),
awful.key({modkey}, "v", spawner(editor), awful.key({modkey}, "v", spawner(editor),
{description = "open GVim", group = "launcher"}), {description = "open GVim", group = "launcher"}),
awful.key({modkey}, "e", spawner"emacs", awful.key({modkey}, "e", spawner(emacs),
{description = "open Emacs", group = "launcher"}), {description = "open Emacs", group = "launcher"}),
awful.key({modkey}, "b", spawner"luakit", awful.key({modkey}, "b", spawner"luakit",
{description = "open Luakit", group = "launcher"}), {description = "open Luakit", group = "launcher"}),

View file

@ -1,3 +1,4 @@
[Settings] [Settings]
gtk-font-name = Latin Modern Sans 11 gtk-font-name = Latin Modern Sans 11
gtk-application-prefer-dark-theme = true gtk-application-prefer-dark-theme = true
gtk-key-theme-name = Emacs

1
debian/.gtkrc-2.0 vendored
View file

@ -1,2 +1,3 @@
gtk-font-name = "Latin Modern Sans 11" gtk-font-name = "Latin Modern Sans 11"
gtk-theme-name = "CleanIce-Marble" gtk-theme-name = "CleanIce-Marble"
gtk-key-theme-name = "Emacs"

View file

@ -25,8 +25,9 @@ let g:jedi#popup_on_dot = 0
let g:jedi#popup_select_first = 0 let g:jedi#popup_select_first = 0
let g:jedi#show_call_signatures = 2 let g:jedi#show_call_signatures = 2
let g:jedi#smart_auto_mappings = 0 let g:jedi#smart_auto_mappings = 0
command W w
map Q gq map Q gq
command Q q
command W w
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
Plug 'https://github.com/morhetz/gruvbox.git' Plug 'https://github.com/morhetz/gruvbox.git'