Merge branch 'master' of gitlab.com:dwt1/dotfiles

This commit is contained in:
Derek Taylor
2022-03-25 16:28:31 -05:00
7 changed files with 16 additions and 10 deletions

View File

@@ -149,7 +149,7 @@ alias yaysyu='yay -Syu --noconfirm' # update standard pkgs and AUR
alias parsua='paru -Sua --noconfirm' # update only AUR pkgs (paru) alias parsua='paru -Sua --noconfirm' # update only AUR pkgs (paru)
alias parsyu='paru -Syu --noconfirm' # update standard pkgs and AUR pkgs (paru) alias parsyu='paru -Syu --noconfirm' # update standard pkgs and AUR pkgs (paru)
alias unlock='sudo rm /var/lib/pacman/db.lck' # remove pacman lock alias unlock='sudo rm /var/lib/pacman/db.lck' # remove pacman lock
alias cleanup='sudo pacman -Rns (pacman -Qtdq)' # remove orphaned packages alias cleanup='sudo pacman -Rns $(pacman -Qtdq)' # remove orphaned packages
# get fastest mirrors # get fastest mirrors
alias mirror="sudo reflector -f 30 -l 30 --number 10 --verbose --save /etc/pacman.d/mirrorlist" alias mirror="sudo reflector -f 30 -l 30 --number 10 --verbose --save /etc/pacman.d/mirrorlist"

View File

@@ -5,6 +5,9 @@
:desc "List bookmarks" "L" #'list-bookmarks :desc "List bookmarks" "L" #'list-bookmarks
:desc "Save current bookmarks to bookmark file" "w" #'bookmark-save)) :desc "Save current bookmarks to bookmark file" "w" #'bookmark-save))
(global-auto-revert-mode 1)
(setq global-auto-revert-non-file-buffers t)
(evil-define-key 'normal ibuffer-mode-map (evil-define-key 'normal ibuffer-mode-map
(kbd "f c") 'ibuffer-filter-by-content (kbd "f c") 'ibuffer-filter-by-content
(kbd "f d") 'ibuffer-filter-by-directory (kbd "f d") 'ibuffer-filter-by-directory

View File

@@ -9,6 +9,7 @@
- [[#bookmarks-and-buffers][BOOKMARKS AND BUFFERS]] - [[#bookmarks-and-buffers][BOOKMARKS AND BUFFERS]]
- [[#bookmarks][Bookmarks]] - [[#bookmarks][Bookmarks]]
- [[#buffers][Buffers]] - [[#buffers][Buffers]]
- [[#global-auto-revert][Global Auto Revert]]
- [[#keybindings-within-ibuffer-mode][Keybindings within ibuffer mode]] - [[#keybindings-within-ibuffer-mode][Keybindings within ibuffer mode]]
- [[#calendar][CALENDAR]] - [[#calendar][CALENDAR]]
- [[#centaur-tabs][CENTAUR-TABS]] - [[#centaur-tabs][CENTAUR-TABS]]
@@ -87,6 +88,14 @@ Regarding /buffers/, the text you are editing in Emacs resides in an object call
| previous-buffer | Goto previous buffer | SPC b p | | previous-buffer | Goto previous buffer | SPC b p |
| save-buffer | Save current buffer | SPC b s | | save-buffer | Save current buffer | SPC b s |
** Global Auto Revert
A buffer can get out of sync with respect to its visited file on disk if that file is changed by another program. To keep it up to date, you can enable Auto Revert mode by typing M-x auto-revert-mode, or you can set it to be turned on globally with 'global-auto-revert-mode'. I have also turned on Global Auto Revert on non-file buffers, which is especially useful for 'dired' buffers.
#+begin_src emacs-lisp
(global-auto-revert-mode 1)
(setq global-auto-revert-non-file-buffers t)
#+end_src
** Keybindings within ibuffer mode ** Keybindings within ibuffer mode
| COMMAND | DESCRIPTION | KEYBINDING | | COMMAND | DESCRIPTION | KEYBINDING |
|-----------------------------------+----------------------------------------+------------| |-----------------------------------+----------------------------------------+------------|

View File

@@ -143,9 +143,6 @@ myEditor :: String
myEditor = "emacsclient -c -a 'emacs' " -- Sets emacs as editor myEditor = "emacsclient -c -a 'emacs' " -- Sets emacs as editor
-- myEditor = myTerminal ++ " -e vim " -- Sets vim as editor -- myEditor = myTerminal ++ " -e vim " -- Sets vim as editor
myRunCommand :: String
myRunCommand = "dmenu_run -l 20 -g 3 -X 0 -Y 0 -W 680 -p 'Run: '"
myBorderWidth :: Dimension myBorderWidth :: Dimension
myBorderWidth = 2 -- Sets border width for windows myBorderWidth = 2 -- Sets border width for windows

View File

@@ -99,9 +99,6 @@ myEditor :: String
myEditor = "emacsclient -c -a 'emacs' " -- Sets emacs as editor myEditor = "emacsclient -c -a 'emacs' " -- Sets emacs as editor
-- myEditor = myTerminal ++ " -e vim " -- Sets vim as editor -- myEditor = myTerminal ++ " -e vim " -- Sets vim as editor
myRunCommand :: String
myRunCommand = "dmenu_run -l 20 -g 3 -X 0 -Y 0 -W 680 -p 'Run: '"
myBorderWidth :: Dimension myBorderWidth :: Dimension
myBorderWidth = 2 -- Sets border width for windows myBorderWidth = 2 -- Sets border width for windows

2
.zshrc
View File

@@ -145,7 +145,7 @@ alias yaysyu='yay -Syu --noconfirm' # update standard pkgs and AUR
alias parsua='paru -Sua --noconfirm' # update only AUR pkgs (paru) alias parsua='paru -Sua --noconfirm' # update only AUR pkgs (paru)
alias parsyu='paru -Syu --noconfirm' # update standard pkgs and AUR pkgs (paru) alias parsyu='paru -Syu --noconfirm' # update standard pkgs and AUR pkgs (paru)
alias unlock='sudo rm /var/lib/pacman/db.lck' # remove pacman lock alias unlock='sudo rm /var/lib/pacman/db.lck' # remove pacman lock
alias cleanup='sudo pacman -Rns (pacman -Qtdq)' # remove orphaned packages alias cleanup='sudo pacman -Rns $(pacman -Qtdq)' # remove orphaned packages
# get fastest mirrors # get fastest mirrors
alias mirror="sudo reflector -f 30 -l 30 --number 10 --verbose --save /etc/pacman.d/mirrorlist" alias mirror="sudo reflector -f 30 -l 30 --number 10 --verbose --save /etc/pacman.d/mirrorlist"