1
0
Fork 0

Update 2020-06-29

This commit is contained in:
Nguyễn Gia Phong 2020-06-29 21:05:34 +07:00
parent 4b637dae5c
commit 95cbffa6b3
4 changed files with 8 additions and 3 deletions

View File

@ -53,6 +53,7 @@ local pulsemixer = terminal .. " -e pulsemixer"
local ranger = terminal .. " -e ranger"
local irc = terminal .. " -e ircII cnx irc.freenode.net"
local python3 = terminal .. " -e python3"
local python2 = terminal .. " -e python2"
local guile = terminal .. " -e guile"
local clojure = terminal .. " -e clojure"
local emacs = "emacs"
@ -80,9 +81,9 @@ local modkey = "Mod4"
awful.layout.layouts = {
awful.layout.suit.fair,
--awful.layout.suit.fair.horizontal,
--awful.layout.suit.tile,
awful.layout.suit.tile,
--awful.layout.suit.tile.left,
awful.layout.suit.tile.bottom,
--awful.layout.suit.tile.bottom,
--awful.layout.suit.tile.top,
--awful.layout.suit.spiral,
--awful.layout.suit.spiral.dwindle,
@ -485,6 +486,8 @@ local globalkeys = awful.util.table.join(
{description = "open ranger at /data", group = "launcher"}),
awful.key({modkey}, "p", spawner(python3),
{description = "open Python 3 interpreter", group = "launcher"}),
awful.key({modkey, "Shift"}, "p", spawner(python2),
{description = "open Python 2 interpreter", group = "launcher"}),
awful.key({modkey}, "c", spawner(clojure),
{description = "open Clojure interpreter", group = "launcher"}),
awful.key({modkey}, "g", spawner(guile),

1
debian/.bashrc vendored
View File

@ -93,6 +93,7 @@ alias la='ls -A'
alias l='$(fc -ln -1) | less -r'
alias r=ranger
alias rp='ranger $HOME/Sources/pip/src/pip/_internal'
alias pwip='python3 $HOME/Sources/pip/src/pip'
alias gcc='gcc -Wall -Wextra -pedantic -O2 -lm'
alias g++='g++ -Wall -Wextra -pedantic -O2 -lm'
alias fpc='fpc -O1 -XS -gl'

2
debian/.xinitrc vendored
View File

@ -1,5 +1,4 @@
#!/bin/sh
xrdb -merge ~/.Xresources
$HOME/.screenlayout/dual.sh
redshift-gtk -l 21.028333:105.854167 &
mate-power-manager &
@ -8,4 +7,5 @@ blueman-applet &
nm-applet &
keynav &
diodon &
. /etc/X11/Xsession
exec awesome

View File

@ -43,6 +43,7 @@ call plug#begin('~/.vim/plugged')
Plug 'https://github.com/vim/killersheep.git'
Plug 'https://github.com/sheerun/vim-polyglot.git'
Plug 'https://github.com/srcery-colors/srcery-vim.git'
Plug 'https://github.com/knsh14/vim-github-link.git'
Plug 'https://github.com/tpope/vim-abolish.git'
Plug 'https://github.com/alx741/vinfo.git'
Plug 'https://github.com/lervag/vimtex.git', {'for': 'tex'}