From: Gabriel Dunne Date: Sun, 13 Dec 2020 03:11:36 +0000 (-0800) Subject: Antialised font whn using term from i3 X-Git-Url: https://git.quilime.com/?a=commitdiff_plain;h=65ff3696527667361a1d749f241f5a5cf38030d7;p=cfg.git Antialised font whn using term from i3 Antialiased font when using urxvt from WM --- diff --git a/.Xresources b/.Xresources index 4368566..118b0a2 100644 --- a/.Xresources +++ b/.Xresources @@ -57,7 +57,9 @@ XTerm*selectToClipboard: true Xcursor.theme: xcursor-breeze Xcursor.size: 0 -URxvt.font: 9x15,xft:TerminessTTFNerdFontMono +URxvt*font: xft:DejaVuSansMono:size=10 +! URxvt.font: xft:TerminessTTFNerdFontMono:size:11 +! URxvt.font: 9x15,xft:TerminessTTFNerdFontMono ! alternative font settings with 'terminus': ! URxvt.font: -xos4-terminus-medium-r-normal--16-160-72-72-c-80-iso10646-1 diff --git a/.emacs b/.emacs index b709cc2..3b46eb0 100644 --- a/.emacs +++ b/.emacs @@ -8,7 +8,7 @@ (global-font-lock-mode 1) (setq font-lock-maximum-decoration t) - +pax ;; neotree ;; https://github.com/jaypei/emacs-neotree (add-to-list 'load-path "~/.emacs.d/plugins/neotree") @@ -16,9 +16,17 @@ (global-set-key [f8] 'neotree-toggle) (setq-default neo-show-hidden-files t) (custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. '(neo-dir-link-face ((t (:foreground "#00ffff")))) '(neo-file-link-face ((t (:foreground "#dddddd")))) '(neo-root-dir-face ((t (:foreground "#8D8D84"))))) (custom-set-variables - '(package-selected-packages '(projectile))) + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(package-selected-packages '(## projectile))) diff --git a/.vimrc b/.vimrc index 8a7874a..d372044 100644 --- a/.vimrc +++ b/.vimrc @@ -42,8 +42,9 @@ map h map l " Centralize backups, swapfiles and undo history -set backupdir=~/.vim/backups -set directory=~/.vim/swaps +set backup +set backupdir=~/.vim/backups// +set directory=~/.vim/swaps// if exists("&undodir") set undodir=~/.vim/undo endif