diff options
| -rw-r--r-- | config/alacritty/alacritty.darwin.yml | 1 | ||||
| -rw-r--r-- | config/qutebrowser/config.py | 6 | ||||
| -rw-r--r-- | config/sc-im/scimrc | 10 | ||||
| -rwxr-xr-x | install | 7 |
4 files changed, 17 insertions, 7 deletions
diff --git a/config/alacritty/alacritty.darwin.yml b/config/alacritty/alacritty.darwin.yml index 1e1debc..beb10ac 100644 --- a/config/alacritty/alacritty.darwin.yml +++ b/config/alacritty/alacritty.darwin.yml @@ -8,6 +8,7 @@ font: offset: x: 0 y: 0 + # brew install font-fira-code-nerd-font normal: family: FiraCode Nerd Font Mono style: Retina diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index 269a38c..a6778d9 100644 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -44,7 +44,8 @@ config.bind("<Command-Return>", "config-cycle window.hide_decoration true false" c.fonts.default_family = ["Fira Mono", "Baekmuk", "Noto Color Emoji", "Symbola"] c.fonts.hints = "bold 11pt default_family" if platform.system() == 'Darwin': - c.fonts.default_size = '13pt' + c.fonts.default_family = ["FiraCode Nerd Font Mono", "FiraMono"] + c.fonts.default_size = "13pt" c.fonts.hints = "bold 12pt default_family" c.hints.chars = "asdfghjkl;" # use key in the main row for hints @@ -438,6 +439,3 @@ c.colors.tabs.selected.even.bg = base05 # Background color for webpages if unset (or empty to use the theme"s # color). c.colors.webpage.bg = base00 - -# vim:TSBufDisable highlight -# vim:LspStop diff --git a/config/sc-im/scimrc b/config/sc-im/scimrc index 12fd258..ac757c1 100644 --- a/config/sc-im/scimrc +++ b/config/sc-im/scimrc @@ -1,3 +1,11 @@ +set input_bar_bottom +set half_page_scroll=1 + +# nunmap "<C-u>" +# nunmap "<C-d>" +# nnoremap "<C-u>" "<C-b>" +# nnoremap "<C-d>" "<D-f>" + DEFINE_COLOR "red" 251 73 52 DEFINE_COLOR "orange" 254 128 25 DEFINE_COLOR "green" 184 187 38 @@ -38,5 +46,3 @@ color "type=INPUT fg=white bg=black" color "type=INFO_MSG italic=1 bold=1 fg=orange bg=black" color "type=ERROR_MSG bold=1 fg=red bg=black" color "type=HELP_HIGHLIGHT bold=1 fg=white bg=black1" - -set input_bar_bottom @@ -96,7 +96,12 @@ parallel_start update_zsh_plugin 'https://github.com/zsh-users/zsh-syntax-highli parallel_start update_zsh_plugin 'https://github.com/MichaelAquilina/zsh-you-should-use' parallel_wait -[ "$(uname)" = Darwin ] && exit +if [ "$(uname)" = Darwin ] +then + # xdg vars not defined for qutebrowser + ln -svfF "$XDG_CONFIG_HOME/qutebrowser" "$HOME/.qutebrowser" + exit +fi ############################################################################### # Linux specific |
