Various additions

`magit` is better, some compdef stuff, a `~-dotfiles` bookmark
This commit is contained in:
Anthony Cicchetti 2021-03-20 17:55:50 -04:00
parent aaaf61e69d
commit 5518c57232
4 changed files with 14 additions and 2 deletions

View file

@ -1 +1 @@
emacsclient -c --eval '(let ((display-buffer-alist `(("^\\*magit: " display-buffer-same-window) ,display-buffer-alist))) (magit-status))' emacsclient -a="" -c --eval '(let ((display-buffer-alist `(("^\\*magit: " display-buffer-same-window) ,display-buffer-alist))) (magit-status))'

View file

@ -66,6 +66,9 @@
'(package-selected-packages '(package-selected-packages
'(lsp-mode yaml-mode evil-lispy treemacs-magit treemacs-evil treemacs lsp-pyright lsp-ui rustic flycheck origami groovy-mode avy editorconfig org-crypt tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit)) '(lsp-mode yaml-mode evil-lispy treemacs-magit treemacs-evil treemacs lsp-pyright lsp-ui rustic flycheck origami groovy-mode avy editorconfig org-crypt tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit))
'(ring-bell-function 'ignore) '(ring-bell-function 'ignore)
'(rustic-format-trigger 'on-compile)
'(rustic-indent-method-chain t)
'(rustic-indent-where-clause t)
'(treemacs-collapse-dirs 3) '(treemacs-collapse-dirs 3)
'(treemacs-filewatch-mode t) '(treemacs-filewatch-mode t)
'(treemacs-follow-mode t) '(treemacs-follow-mode t)

7
zsh/funcs/rustup Normal file
View file

@ -0,0 +1,7 @@
if [[ $(command -v rustup) ]]; then
if [[ ( $ZNAP_USED = 1) ]]; then
znap compdef _rustup 'rustup completions zsh'
znap compdef _cargo 'rustup completions zsh cargo'
fi
fi

View file

@ -15,6 +15,8 @@ export KEYTIMEOUT=1
typeset -U path typeset -U path
typeset -U fpath typeset -U fpath
hash -d -- -dotfiles=~/.dotfiles
fpath=(~/bin ~/.zshcompletions $fpath) fpath=(~/bin ~/.zshcompletions $fpath)
zstyle :compinstall filename '/home/anthonys/.zshrc' zstyle :compinstall filename '/home/anthonys/.zshrc'
zstyle ":completion:*" complete _complete _ignored _approximate _expand zstyle ":completion:*" complete _complete _ignored _approximate _expand
@ -36,7 +38,7 @@ zle -N down-line-or-beginning-search
export COMPLETION_WAITING_DOTS="true" export COMPLETION_WAITING_DOTS="true"
export VISUAL='editc' export VISUAL='emacsclient -c -a=""'
export EDITOR='editn' export EDITOR='editn'
path=("$HOME/bin" "$HOME/go/bin" $path) path=("$HOME/bin" "$HOME/go/bin" $path)