aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMax Christian Pohle2020-06-26 10:13:58 +0200
committerMax Christian Pohle2020-06-26 13:43:27 +0200
commitb68fec17407aa70fdd4cc5c88667ac2d2f49658a (patch)
tree113528e165b486cbf2069f220bdca949b1dcd18d /utils
parentdbcaab09f2b1f2b6256364407fa67ee67f3cdc66 (diff)
downloadvim-b68fec17407aa70fdd4cc5c88667ac2d2f49658a.tar.bz2
vim-b68fec17407aa70fdd4cc5c88667ac2d2f49658a.zip
Hotfixes to improve compatibility with python
Diffstat (limited to 'utils')
-rw-r--r--utils/Xresources5
-rw-r--r--utils/default-font.conf29
2 files changed, 20 insertions, 14 deletions
diff --git a/utils/Xresources b/utils/Xresources
index 5723999..08969ac 100644
--- a/utils/Xresources
+++ b/utils/Xresources
@@ -1,6 +1,5 @@
1! #include "/home/max/.config/base16-xresources/xresources/base16-tomorrow-night.Xresources" 1#include "/home/max/.local/share/base16/base16-xresources/xresources/base16-tomorrow-night.Xresources"
2! #include "/home/max/.config/base16-xresources/xresources/base16-google-light.Xresources" 2! #include "/home/max/.local/share/base16/base16-xresources/xresources/base16-tomorrow.Xresources"
3#include "/home/max/.local/share/base16/base16-xresources/xresources/base16-tomorrow.Xresources"
4 3
5urxvt.scrollBar: false 4urxvt.scrollBar: false
6urxvt.background: base00 5urxvt.background: base00
diff --git a/utils/default-font.conf b/utils/default-font.conf
index cf01d6d..d7b43e2 100644
--- a/utils/default-font.conf
+++ b/utils/default-font.conf
@@ -1,24 +1,31 @@
1<?xml version="1.0"?> 1<?xml version="1.0"?>
2<!-- this is a configuration file for fontconfig and should be copied or linked to ~/.config/fontconfig/conf.d/ --> 2<!-- this is a configuration file for fontconfig and should be copied or linked to ~/.config/fontconfig/fonts.conf -->
3<!DOCTYPE fontconfig SYSTEM "/etc/fonts/fonts.dtd"> 3<!DOCTYPE fontconfig SYSTEM "/etc/fonts/fonts.dtd">
4<fontconfig> 4<fontconfig>
5 <match target="pattern"> 5 <match target="pattern">
6 <test qual="any" name="family"><string>monospace</string></test> 6 <test name="family"><string>monospace</string></test>
7 <edit mode="prepend" name="family"><string>Hack Nerd Font Mono</string></edit> 7 <edit name="family" mode="prepend">
8 <edit mode="prepend" name="family"><string>Hack</string></edit> 8 <string>Hack Nerd Font Mono</string>
9 <edit mode="prepend" name="family"><string>emoji</string></edit> 9 <string>Hack</string>
10 <edit mode="prepend" name="family"><string>emojione</string></edit> 10 <string>emoji</string>
11 <edit mode="prepend" name="family"><string>FuraCode Nerd Font Mono Medium</string></edit> 11 <string>emojione</string>
12 <string>FuraCode Nerd Font Mono Medium</string>
13 <string>FiraCode Retina Retina</string>
14 </edit>
12 <test name="slant" compare="not_eq"><const>italic</const></test> 15 <test name="slant" compare="not_eq"><const>italic</const></test>
13 <edit mode="assign" name="style"><string>bold</string></edit> 16 <edit mode="assign" name="style"><string>bold</string></edit>
14 </match> 17 </match>
15 <match target="pattern"> 18 <match target="pattern">
16 <test qual="any" name="family"><string>serif</string></test> 19 <test name="family"><string>serif</string></test>
17 <edit name="family" mode="prepend" binding="same"><string>Noto Serif</string></edit> 20 <edit name="family" mode="prepend">
21 <string>Noto Serif</string>
22 </edit>
18 </match> 23 </match>
19 <match target="pattern"> 24 <match target="pattern">
20 <test qual="any" name="family"><string>sans-serif</string></test> 25 <test name="family"><string>sans-serif</string></test>
21 <edit name="family" mode="prepend" binding="same"><string>Noto Sans</string></edit> 26 <edit name="family" mode="prepend">
27 <string>Noto Sans</string>
28 </edit>
22 </match> 29 </match>
23 <match target="pattern"> 30 <match target="pattern">
24 <edit name="dpi" mode="assign"><double>102</double></edit> 31 <edit name="dpi" mode="assign"><double>102</double></edit>
..