]> git.quilime.com - cfg.git/commitdiff
Antialised font whn using term from i3
authorGabriel Dunne <gdunne@quilime.com>
Sun, 13 Dec 2020 03:11:36 +0000 (19:11 -0800)
committerGabriel Dunne <gdunne@quilime.com>
Sun, 13 Dec 2020 03:11:56 +0000 (19:11 -0800)
Antialiased font when using urxvt from WM

.Xresources
.emacs
.vimrc

index 4368566bd76d1fadc70be2db76f252d7c6b86b67..118b0a28d6ed9b6680eee3e36655beedd40f097b 100644 (file)
@@ -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 b709cc2347257bb2bfd1b8e6f1223288c5601850..3b46eb02a7bae981e7d165c3353ff76a1b2b4dc7 100644 (file)
--- 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")
 (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 8a7874a7e5a78c1313c73227072f0213b6f0d438..d372044623da212f4b7e24beecf6e776afa25de6 100644 (file)
--- a/.vimrc
+++ b/.vimrc
@@ -42,8 +42,9 @@ map <C-h> <C-W>h
 map <C-l> <C-W>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