Skip to content

Commit e4f8602

Browse files
committed
misc
1 parent bcc7825 commit e4f8602

5 files changed

Lines changed: 7 additions & 4 deletions

File tree

home/.alias

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ if [[ -n $ZSH_VERSION ]]; then
5555
alias -g P="|column -t"
5656
alias -g S="|sort"
5757
alias -g X="|xargs"
58-
alias -g G='|egrep --color=auto'
59-
alias -g EG='|& egrep --color=auto'
58+
alias -g G='|grep -E --color=auto'
59+
alias -g EG='|& grep -E --color=auto'
6060
alias -g H="|head -n $(($LINES-2))"
6161
alias -g T="|tail -n $(($LINES-2))"
6262
alias -g N='>/dev/null'

home/.config/doom/modules/private/my-cc/config.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
)
6969

7070
(use-package! ccls
71-
:load-path "~/Dev/Emacs/emacs-ccls"
71+
;; :load-path "~/Dev/Emacs/emacs-ccls"
7272
:hook ((c-mode-local-vars c++-mode-local-vars objc-mode-local-vars) . +ccls|enable)
7373
:init
7474
(defun +my/ccls-code-lens ()

home/.config/doom/modules/private/my-cc/packages.el

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
;; -*- no-byte-compile: t; -*-
22
;;; private/my-cc/packages.el
33

4-
(package! ccls :ignore t)
54
(package! clang-format)
65
(package! cmake-mode :recipe (:host github :repo "emacsmirror/cmake-mode" :files (:defaults "*")))
76
(package! llvm-mode :ignore t)

home/.config/doom/packages.el

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
(package! avy)
66
(package! atomic-chrome)
7+
(package! ccls)
78
(package! eglot)
89
(package! lispyville)
910
;; (package! lsp-mode :ignore t)

home/.tmux.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ setw -g monitor-activity on
1818
bind R source ~/.tmux.conf \; display ".tmux.conf reloaded"
1919

2020
# Pane bindings
21+
bind -n M-h selectp -L
22+
bind -n M-l selectp -R
2123
bind k selectp -U
2224
bind j selectp -D
2325
bind h selectp -L
@@ -72,6 +74,7 @@ setw -g window-status-current-format '#[fg=white,bold]#I:#W'
7274

7375
# Copy mode
7476
setw -g mode-keys vi
77+
bind s copy-mode
7578
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xclip -se c -i"
7679
bind P run "xsel -o | tmux load-buffer - ; tmux paste-buffer"
7780

0 commit comments

Comments
 (0)