Compare commits

..

No commits in common. "956ed75ed9dd0aa5224524464a12e72b8c433a6b" and "e1c915d261f2e3da81ee1c112d8a47a5295dec5b" have entirely different histories.

2 changed files with 14 additions and 14 deletions

View File

@ -38,7 +38,7 @@
(global-set-key (kbd "C-x <right>") 'windmove-right) (global-set-key (kbd "C-x <right>") 'windmove-right)
(global-set-key (kbd "C-x <up>") 'windmove-up) (global-set-key (kbd "C-x <up>") 'windmove-up)
(global-set-key (kbd "C-x <down>") 'windmove-down) (global-set-key (kbd "C-x <down>") 'windmove-down)
(global-set-key (kbd "C-S-o") 'other-window) (global-set-key (kbd "C-<tab>") 'ace-window)
;; Meta atajos (atajos de atajos) ;; Meta atajos (atajos de atajos)
;;(global-set-key (kbd "C-c l d") "\C-a\C- \C-n\M-w\C-y") ; Duplicar línea ;;(global-set-key (kbd "C-c l d") "\C-a\C- \C-n\M-w\C-y") ; Duplicar línea

View File

@ -14,6 +14,19 @@
;;; Code: ;;; Code:
;; Iconos bonitos para varias cosas
(use-package nerd-icons
:straight t
:defer t)
;; Usar nerd-icons en dired
(use-package nerd-icons-dired
:straight t
:defer t
:hook (dired-mode . nerd-icons-dired-mode)
:config
(setq dired-sidebar-theme 'nerd))
;; Intercamiar buffers de lugar ;; Intercamiar buffers de lugar
(use-package buffer-move (use-package buffer-move
:straight t :straight t
@ -174,19 +187,6 @@
) )
:ensure t) :ensure t)
;; Iconos bonitos para varias cosas
(use-package nerd-icons
:straight t
:defer t)
;; Usar nerd-icons en dired
(use-package nerd-icons-dired
:straight t
:defer t
:hook (dired-mode . nerd-icons-dired-mode)
:config
(setq dired-sidebar-theme 'nerd))
;; Mecanografía ;; Mecanografía
(use-package speed-type (use-package speed-type
:defer t :defer t