Compare commits

...

3 Commits

Author SHA1 Message Date
kj
2d91024820 Enable evil mode with emacs as default state. 2023-04-13 20:40:26 -04:00
kj
e8be9f4264 Add background to org-block. 2023-04-13 20:39:58 -04:00
kj
c05eee7657 Change emacs opacity at startup. 2023-04-13 20:35:45 -04:00
4 changed files with 10 additions and 9 deletions

View File

@ -98,8 +98,8 @@
tags-revert-without-query 1 ; Recargar tags (ctags) sin pedir confirmación. tags-revert-without-query 1 ; Recargar tags (ctags) sin pedir confirmación.
) )
;; Leve transparencia en emacs por defecto. ;; Leve transparencia en emacs por defecto.
(set-frame-parameter (selected-frame) 'alpha '(98 . 98)) (set-frame-parameter (selected-frame) 'alpha '(99 . 99))
(add-to-list 'default-frame-alist '(alpha . (98 . 98))) (add-to-list 'default-frame-alist '(alpha . (99 . 99)))
;; Backups enabled, use nil to disable ;; Backups enabled, use nil to disable
(setq (setq

View File

@ -77,9 +77,9 @@
(evil-define-key 'motion 'global (kbd "<leader>ff") 'counsel-find-file) ;; Abrir archivo (evil-define-key 'motion 'global (kbd "<leader>ff") 'counsel-find-file) ;; Abrir archivo
;; Iniciar en normal state si es un lenguaje de programación ;; Iniciar en normal state si es un lenguaje de programación
(evil-set-initial-state 'prog-mode 'normal) ;; (evil-set-initial-state 'prog-mode 'normal)
(evil-set-initial-state 'org-mode 'normal) ;; (evil-set-initial-state 'org-mode 'normal)
(evil-set-initial-state 'dashboard-mode 'normal) ;; (evil-set-initial-state 'dashboard-mode 'normal)
) )
(provide 'init-evil) (provide 'init-evil)

View File

@ -18,9 +18,10 @@
;; (set-face-attribute (car face) nil :font "Cantarell" :weight 'regular :height (cdr face)) ;; (set-face-attribute (car face) nil :font "Cantarell" :weight 'regular :height (cdr face))
;; Ensure that anything that should be fixed-pitch in Org files appears that way ;; Ensure that anything that should be fixed-pitch in Org files appears that way
(set-face-attribute 'org-hide nil :inherit 'fixed-pitch) ;; (set-face-attribute 'org-hide nil :inherit 'fixed-pitch)
(set-face-attribute 'org-block nil :foreground 'unspecified :inherit 'fixed-pitch) ;; (set-face-attribute 'org-block nil :foreground 'unspecified :inherit 'fixed-pitch)
(set-face-attribute 'org-code nil :inherit '(shadow fixed-pitch)) ;; (set-face-attribute 'org-code nil :inherit '(shadow fixed-pitch))
(set-face-attribute 'org-block nil :underline nil :foreground nil :background "#1e1f28")
(set-face-attribute 'org-table nil :inherit '(shadow fixed-pitch)) (set-face-attribute 'org-table nil :inherit '(shadow fixed-pitch))
(set-face-attribute 'org-verbatim nil :inherit '(shadow fixed-pitch)) (set-face-attribute 'org-verbatim nil :inherit '(shadow fixed-pitch))
(set-face-attribute 'org-special-keyword nil :inherit '(font-lock-comment-face fixed-pitch)) (set-face-attribute 'org-special-keyword nil :inherit '(font-lock-comment-face fixed-pitch))

View File

@ -24,7 +24,7 @@
(require 'init-treemacs) (require 'init-treemacs)
;;(require 'init-ctags) ;;(require 'init-ctags)
(require 'init-ivy) (require 'init-ivy)
;; (require 'init-evil) (require 'init-evil)
(require 'init-keys) (require 'init-keys)
;; Lenguajes ;; Lenguajes