diff --git a/.config/vim/ftplugin/fzf.vim b/.config/vim/ftplugin/fzf.vim new file mode 100644 index 0000000..fca11a5 --- /dev/null +++ b/.config/vim/ftplugin/fzf.vim @@ -0,0 +1,5 @@ +" Do not highlight Unicode box drawing chars as non-ascii +" TODO: Look into fzf source code for all other possible Unicode chars +let w:ignore_non_ascii_chars = '─│╭╮╰╯▌' .. get(w:, 'ignore_non_ascii_chars', '') +" Update after changes +call HighlightNonASCIIChars()