mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
Compare commits
No commits in common. "15a9e1d81b875b2ef2bbbc7824b3d0d35db0ebc0" and "4ee46891b032ada07042119d7870c6b9868adf6f" have entirely different histories.
15a9e1d81b
...
4ee46891b0
|
@ -1249,7 +1249,13 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)."
|
|||
(require 'all-the-icons-ibuffer)
|
||||
(add-hook 'ibuffer-mode-hook #'all-the-icons-ibuffer-mode)
|
||||
(setq all-the-icons-ibuffer-color-icon t)
|
||||
(evil-set-initial-state 'ibuffer-mode 'normal)
|
||||
(evil-set-initial-state 'ibuffer-mode 'motion)
|
||||
(evil-define-key 'motion 'ibuffer-mode
|
||||
"j" 'evil-next-visual-line
|
||||
"k" 'evil-previous-visual-line
|
||||
"d" 'ibuffer-mark-for-delete
|
||||
"q" 'kill-buffer
|
||||
(kbd "<return>") 'ibuffer-visit-buffer)
|
||||
|
||||
;;;------ dired configuration ------;;;
|
||||
|
||||
|
@ -1512,7 +1518,6 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)."
|
|||
(setq +format-on-save-enabled-modes '(not emacs-lisp-mode sql-mode tex-mode latex-mode org-msg-edit-mode nix-mode))
|
||||
|
||||
(add-to-list 'tramp-remote-path 'tramp-own-remote-path)
|
||||
(add-to-list 'vterm-tramp-shells '("ssh" "zsh")) ;; I use zsh on all my servers
|
||||
|
||||
;; I source my rss from my freshrss instance
|
||||
;; I login with a private elisp file: ~/.emacs.d/freshrss-elfeed.el
|
||||
|
|
|
@ -1467,7 +1467,13 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)."
|
|||
(require 'all-the-icons-ibuffer)
|
||||
(add-hook 'ibuffer-mode-hook #'all-the-icons-ibuffer-mode)
|
||||
(setq all-the-icons-ibuffer-color-icon t)
|
||||
(evil-set-initial-state 'ibuffer-mode 'normal)
|
||||
(evil-set-initial-state 'ibuffer-mode 'motion)
|
||||
(evil-define-key 'motion 'ibuffer-mode
|
||||
"j" 'evil-next-visual-line
|
||||
"k" 'evil-previous-visual-line
|
||||
"d" 'ibuffer-mark-for-delete
|
||||
"q" 'kill-buffer
|
||||
(kbd "<return>") 'ibuffer-visit-buffer)
|
||||
|
||||
#+END_SRC
|
||||
** Dired Configuration
|
||||
|
@ -1784,7 +1790,6 @@ I don't have this active right now since it's kinda weird with pgtk...
|
|||
** Terminal
|
||||
#+BEGIN_SRC emacs-lisp :tangle config.el
|
||||
(add-to-list 'tramp-remote-path 'tramp-own-remote-path)
|
||||
(add-to-list 'vterm-tramp-shells '("ssh" "zsh")) ;; I use zsh on all my servers
|
||||
#+END_SRC
|
||||
** Elfeed
|
||||
#+BEGIN_SRC emacs-lisp :tangle config.el
|
||||
|
|
Loading…
Reference in a new issue