Compare commits
No commits in common. "tower" and "master" have entirely different histories.
26
.dockerfunc
26
.dockerfunc
|
@ -71,20 +71,20 @@ android-studio() {
|
|||
#exit 0;
|
||||
}
|
||||
|
||||
# ansible() {
|
||||
# local args=$@
|
||||
# local cur_dir=$(pwd)
|
||||
# local targetmount=$(basename $cur_dir)
|
||||
ansible() {
|
||||
local args=$@
|
||||
local cur_dir=$(pwd)
|
||||
local targetmount=$(basename $cur_dir)
|
||||
|
||||
# docker run -it \
|
||||
# --name ansible_$targetmount \
|
||||
# -v ${cur_dir}:/src/$targetmount \
|
||||
# -w /src/$targetmount \
|
||||
# -v $HOME/.ssh/:/tmp/.ssh:ro \
|
||||
# -v /etc/hosts:/etc/hosts:ro \
|
||||
# ${DOCKER_REPO_PREFIX}/ansible:alpine \
|
||||
# bash -c "$args"
|
||||
# }
|
||||
docker run -it \
|
||||
--name ansible_$targetmount \
|
||||
-v ${cur_dir}:/src/$targetmount \
|
||||
-w /src/$targetmount \
|
||||
-v $HOME/.ssh/:/tmp/.ssh:ro \
|
||||
-v /etc/hosts:/etc/hosts:ro \
|
||||
${DOCKER_REPO_PREFIX}/ansible:alpine \
|
||||
bash -c "$args"
|
||||
}
|
||||
|
||||
ant() {
|
||||
local args=$@
|
||||
|
|
12
.i3/config
12
.i3/config
|
@ -192,16 +192,16 @@ mode "resize" {
|
|||
# Pressing right will grow the window’s width.
|
||||
# Pressing up will shrink the window’s height.
|
||||
# Pressing down will grow the window’s height.
|
||||
bindsym h resize shrink width 10 px or 10 ppt
|
||||
bindsym j resize grow height 10 px or 10 ppt
|
||||
bindsym j resize shrink width 10 px or 10 ppt
|
||||
bindsym i resize grow height 10 px or 10 ppt
|
||||
bindsym k resize shrink height 10 px or 10 ppt
|
||||
bindsym l resize grow width 10 px or 10 ppt
|
||||
|
||||
# same bindings, but for the arrow keys
|
||||
bindsym Left resize shrink width 5 px
|
||||
bindsym Down resize grow height 5 px
|
||||
bindsym Up resize shrink height 5 px
|
||||
bindsym Right resize grow width 5 px
|
||||
bindsym Left resize shrink width 10 px or 10 ppt
|
||||
bindsym Down resize grow height 10 px or 10 ppt
|
||||
bindsym Up resize shrink height 10 px or 10 ppt
|
||||
bindsym Right resize grow width 10 px or 10 ppt
|
||||
|
||||
# back to normal: Enter or Escape
|
||||
bindsym Return mode "default"
|
||||
|
|
|
@ -33,17 +33,6 @@ pomodoro_break = ""
|
|||
# alert_absolute = true
|
||||
# format = "{icon}/{available}"
|
||||
|
||||
[[block]]
|
||||
block = "disk_space"
|
||||
path = "/media/store"
|
||||
info_type = "available"
|
||||
unit = "GB"
|
||||
interval = 20
|
||||
warning = 20.0
|
||||
alert = 10.0
|
||||
alert_absolute = true
|
||||
format = "{icon}/store {available}"
|
||||
|
||||
[[block]]
|
||||
block = "disk_space"
|
||||
path = "/home"
|
||||
|
|
|
@ -32,7 +32,8 @@ This function should only modify configuration layer settings."
|
|||
|
||||
;; List of configuration layers to load.
|
||||
dotspacemacs-configuration-layers
|
||||
'(
|
||||
'(javascript
|
||||
systemd
|
||||
;; ----------------------------------------------------------------
|
||||
;; Example of useful layers you may want to use right away.
|
||||
;; Uncomment some layer names and press `SPC f e R' (Vim style) or
|
||||
|
@ -48,32 +49,26 @@ This function should only modify configuration layer settings."
|
|||
graphviz
|
||||
helm
|
||||
html
|
||||
javascript
|
||||
latex
|
||||
;; https://github.com/emacs-lsp/lsp-mode
|
||||
(lsp :variables
|
||||
lsp-rust-server
|
||||
'rust-analyzer)
|
||||
markdown
|
||||
;; https://www.spacemacs.org/layers/+emacs/org/README.html
|
||||
(org :variables
|
||||
org-enable-roam-support t
|
||||
org-enable-roam-ui t)
|
||||
plantuml
|
||||
(python :variables python-backend 'lsp python-lsp-server 'mspyls)
|
||||
;; https://develop.spacemacs.org/layers/+lang/rust/README.html
|
||||
(rust :variables rust-backend 'lsp)
|
||||
shell
|
||||
;; shell-scripts
|
||||
;; spell-checking
|
||||
syntax-checking
|
||||
systemd
|
||||
(tree-sitter :variables
|
||||
spacemacs-tree-sitter-hl-black-list '(js-mode js2-mode)
|
||||
tree-sitter-syntax-highlight-enable t
|
||||
tree-sitter-fold-enable t
|
||||
tree-sitter-fold-indicators-enable t)
|
||||
(typescript-mode (typescript-backend . lsp))
|
||||
version-control
|
||||
yaml
|
||||
;; (shell :variables
|
||||
|
|
Loading…
Reference in New Issue