From b9c6d426220abb93a05755402b81d3c87fe73210 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Fri, 13 Jan 2023 19:12:00 +0100 Subject: Change emojis --- mutt/.mutt/muttrc | 6 ++++-- vim/.vim/after/plugin/status.vim | 5 ++++- vim/.vimrc | 4 ++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/mutt/.mutt/muttrc b/mutt/.mutt/muttrc index eea4ba6..818c4c1 100644 --- a/mutt/.mutt/muttrc +++ b/mutt/.mutt/muttrc @@ -71,9 +71,11 @@ set include=yes # Index set index_format="%@emoji@%4C %X %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s" -index-format-hook emoji "~F" "✨" + +# Needs ttf-dejavu-emojiless from AUR +index-format-hook emoji "~F" "πŸ”₯" index-format-hook emoji "~X 1-10" "πŸ“Ž" -index-format-hook emoji "~G" "πŸ”" +index-format-hook emoji "~G" "πŸ”’" index-format-hook emoji "~f nyu.edu" "󾓦 " index-format-hook emoji "~A" " " diff --git a/vim/.vim/after/plugin/status.vim b/vim/.vim/after/plugin/status.vim index 05acb6e..efa7eb3 100644 --- a/vim/.vim/after/plugin/status.vim +++ b/vim/.vim/after/plugin/status.vim @@ -28,6 +28,9 @@ function! WinCwd() return "" endfunction +let g:active_window=1 +autocmd WinEnter * let g:active_window=winnr() + augroup myflags let status_line_bg = synIDattr(hlID("StatusLine"), "fg") let status_line_fg = synIDattr(hlID("StatusLine"), "bg") @@ -41,6 +44,6 @@ augroup myflags autocmd User Flags call Hoist("buffer", "%{b:trailing?'[tw]':''}") autocmd User Flags call Hoist("buffer", "%{b:mixed?'[mixed]':''}") autocmd User Flags call Hoist("buffer", "%{&paste?'[paste]':''}") - autocmd User Flags call Hoist("window", "%{WinCwd() != '' ? '['.WinCwd().']' : ''} 🌻") + autocmd User Flags call Hoist("window", "%{WinCwd() != '' ? '['.WinCwd().']' : ''} %{winnr() == g:active_window ? '🐺' : ''}") autocmd User Flags call Hoist("global", {"hl": "MyGlobals"}, "[%{pathshorten(GlobalCwd())}, %{g:my_searchprgs[g:my_searchprg]}, %{g:my_findprgs[g:my_findprg]}] 🌿") augroup END diff --git a/vim/.vimrc b/vim/.vimrc index 91ef1ab..d83296a 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -163,11 +163,11 @@ let g:neomake_gcc_args=[ let g:neomake_python_enabled_makers = ['python', 'pylint'] let g:neomake_error_sign = { - \ 'text': '🍁', + \ 'text': 'πŸ”Έ', \ 'texthl': 'NeomakeErrorSign', \ } let g:neomake_warning_sign = { - \ 'text': 'πŸ’¦', + \ 'text': 'πŸ”Ή', \ 'texthl': 'NeomakeWarningSign', \ } -- cgit v1.2.3