Compare commits

..

No commits in common. "75cf33384ce6d3581b751814d8f96820eec652ba" and "07097201dd83c02c491041679f46215e0ca13081" have entirely different histories.

3 changed files with 25 additions and 10 deletions

View File

@ -41,13 +41,6 @@
(evil-define-key vim-states 'global (kbd "C-r") 'rg) (evil-define-key vim-states 'global (kbd "C-r") 'rg)
(evil-define-key 'normal 'global (kbd "U") 'undo-redo) (evil-define-key 'normal 'global (kbd "U") 'undo-redo)
;; Arreglar yank-pop en normal mode
(evil-define-key 'normal 'global (kbd "M-y") 'counsel-yank-pop)
;; Re-bindear C-p y C-n a como es normalmente
(evil-define-key 'normal 'global (kbd "C-p") 'previous-line)
(evil-define-key 'normal 'global (kbd "C-n") 'next-line)
;; Navegación entre frames ;; Navegación entre frames
(evil-define-key 'motion 'global (kbd "<leader>wh") 'windmove-left) (evil-define-key 'motion 'global (kbd "<leader>wh") 'windmove-left)
(evil-define-key 'motion 'global (kbd "<leader>wj") 'windmove-down) (evil-define-key 'motion 'global (kbd "<leader>wj") 'windmove-down)

View File

@ -32,9 +32,6 @@
(add-hook 'after-init-hook #'restore-gc-cons-percentage-after-init) (add-hook 'after-init-hook #'restore-gc-cons-percentage-after-init)
(setq gc-cons-percentage (get 'gc-cons-percentage 'value-during-init)) (setq gc-cons-percentage (get 'gc-cons-percentage 'value-during-init))
;; Permitir solo la búsqueda de archivos case sentsitive.
(setq auto-mode-case-fold nil)
;; Recommended by ;; Recommended by
;; https://github.com/raxod502/straight.el#getting-started to prevent ;; https://github.com/raxod502/straight.el#getting-started to prevent
;; pacakge.el stepping on straight's toes. ;; pacakge.el stepping on straight's toes.

25
init.el
View File

@ -9,6 +9,31 @@
;;; Code: ;;; Code:
;; Mejorar el tiempo de carga
(setq auto-mode-case-fold nil)
(unless (or (daemonp) noninteractive)
(let ((old-file-name-handler-alist file-name-handler-alist))
;; If `file-name-handler-alist' is nil, no 256 colors in TUI
;; @see https://emacs-china.org/t/spacemacs-centaur-emacs/3802/839
(setq file-name-handler-alist
(unless (display-graphic-p)
'(("\\(?:\\.tzst\\|\\.zst\\|\\.dz\\|\\.txz\\|\\.xz\\|\\.lzma\\|\\.lz\\|\\.g?z\\|\\.\\(?:tgz\\|svgz\\|sifz\\)\\|\\.tbz2?\\|\\.bz2\\|\\.Z\\)\\(?:~\\|\\.~[-[:alnum:]:#@^._]+\\(?:~[[:digit:]]+\\)?~\\)?\\'" . jka-compr-handler))))
(add-hook 'emacs-startup-hook
(lambda ()
"Recover file name handlers."
(setq file-name-handler-alist
(delete-dups (append file-name-handler-alist
old-file-name-handler-alist)))))))
(setq gc-cons-threshold most-positive-fixnum
gc-cons-percentage 0.5)
(add-hook 'emacs-startup-hook
(lambda ()
"Recover GC values after startup."
(setq gc-cons-threshold 800000
gc-cons-percentage 0.1)))
;; Cargar configuraciones ;; Cargar configuraciones
(add-to-list 'load-path (concat user-emacs-directory "configs")) (add-to-list 'load-path (concat user-emacs-directory "configs"))