feats: nvim, emacs, shell

* nvim: Add copilot completions
* nvim: grug-far buffer won't show lualine & winbar now
* nvim: remove obsidian.nvim
* nvim: luasnip now works
* emacs: more keymaps in org-mode
* emacs: start customizing leader keys
* shell: Add more ls aliases
* shell: Add apt alias in fish
This commit is contained in:
js0ny 2025-02-10 22:37:58 +00:00
parent da0cc1d6e8
commit a506ee28ad
14 changed files with 120 additions and 31 deletions

View file

@ -16,3 +16,8 @@
:nvom "C-w e" 'evil-window-up
:nvom "C-w i" 'evil-window-right
)
;; Swap ; and :
(map! :leader
";" #'execute-extended-command
":" #'pp-eval-expression)

View file

@ -105,7 +105,7 @@
;;prodigy ; FIXME managing external services & code builders
;;terraform ; infrastructure as code
;;tmux ; an API for interacting with tmux
;;tree-sitter ; syntax and parsing, sitting in a tree...
tree-sitter ; syntax and parsing, sitting in a tree...
;;upload ; map local to remote projects via ssh/ftp
:os
@ -148,7 +148,7 @@
latex ; writing papers in Emacs has never been so fun
;;lean ; for folks with too much to prove
;;ledger ; be audit you can be
;;lua ; one-based indices? one-based indices
lua ; one-based indices? one-based indices
markdown ; writing docs for people to ignore
;;nim ; python + lisp at the speed of c
;;nix ; I hereby declare "nix geht mehr!"

View file

@ -33,7 +33,9 @@
"C-c i" (lambda () (interactive) (my/insert-emphasis-with-zws ?/))
"C-c u" (lambda () (interactive) (my/insert-emphasis-with-zws ?_))
:nvom "N" 'org-next-visible-heading
:nvom "E" 'org-previous-visible-heading)
:nvom "E" 'org-previous-visible-heading
:nvom "M-n" 'org-metadown
:nvom "M-e" 'org-metaup)
(setq org-capture-templates
'(("t" "Task" entry (file+headline "~/OrgFiles/tasks/inbox.org" "Tasks")