commit 2b2d3ecf15e7564907b79cd9b3bde1c3378fd985
parent 46869fb927e5e186b80300991a77027d24e99b24
Author: Ashymad <czilukim@o2.pl>
Date: Mon, 2 Jul 2018 18:42:45 +0200
Do not use the broken Nerd Font
Diffstat:
4 files changed, 13 insertions(+), 12 deletions(-)
diff --git a/astroid/.config/astroid/config b/astroid/.config/astroid/config
@@ -13,13 +13,13 @@
},
"terminal": {
"height": "10",
- "font_description": "Monofur Nerd Font"
+ "font_description": "Overpass"
},
"thread_index": {
"page_jump_rows": "6",
"sort_order": "newest",
"cell": {
- "font_description": "Monofur Nerd Font 14",
+ "font_description": "Overpass 14",
"line_spacing": "2",
"date_length": "10",
"message_count_length": "4",
@@ -96,7 +96,8 @@
"crypto": {
"gpg": {
"path": "gpg2",
- "always_trust": "true"
+ "always_trust": "true",
+ "enabled": "true"
}
},
"saved_searches": {
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
@@ -1,7 +1,7 @@
;; (package-initialize)
;; Sane amount of scroll
-(setq mouse-wheel-scroll-amount '(1))
+(setq mouse-wheel-scroll-amount '(3))
(setq mouse-wheel-progressive-speed nil)
;; Setup package.el
@@ -134,7 +134,7 @@
'(ansi-color-faces-vector
[default default default italic underline success warning error])
'(ansi-color-names-vector
- ["#242424" "#e5786d" "#95e454" "#cae682" "#8ac6f2" "#333366" "#ccaa8f" "#f6f3e8"])
+ ["#282c34" "#ff6c6b" "#98be65" "#da8548" "#61afef" "#c678dd" "#1f5582" "#abb2bf"])
'(custom-enabled-themes (quote (zerodark)))
'(custom-safe-themes
(quote
@@ -149,4 +149,4 @@
;; 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.
- '(default ((t (:family "Monofur Nerd Font Mono" :foundry "unci" :slant normal :weight normal :height 158 :width normal)))))
+ '(default ((t (:family "Fira Code" :foundry "CTDB" :slant normal :weight normal :height 143 :width normal)))))
diff --git a/kitty/.config/kitty/kitty.conf b/kitty/.config/kitty/kitty.conf
@@ -11,13 +11,13 @@
#
# You can get a list of full family names available on your computer by running
# kitty list-fonts
-font_family monofur Nerd Font Complete Mono
-italic_font monofur italic Nerd Font Complete Mono
-bold_font monofur bold Nerd Font Complete Mono
+font_family Fira Code
+#italic_font monofur italic
+#bold_font spacefurs-mono
bold_italic_font auto
# Font size (in pts)
-font_size 16.0
+font_size 14.0
# The amount the font size is changed by (in pts) when increasing/decreasing
# the font size in a running terminal.
diff --git a/nvim/.config/nvim/ginit.vim b/nvim/.config/nvim/ginit.vim
@@ -1,5 +1,5 @@
if exists('g:GtkGuiLoaded')
- call rpcnotify(1, 'Gui', 'Font', 'FuraCode Nerd Font 13')
+ call rpcnotify(1, 'Gui', 'Font', 'Fira Code 13')
elseif exists('g:GuiLoaded')
- Guifont FuraCode Nerd Font Mono:h13
+ Guifont Fira Code:h13
endif