Updated FAQ (markdown)

Bailey Ling 2013-09-30 07:43:29 -07:00
parent 733606bc68
commit a8c48d32dd

9
FAQ.md

@ -6,6 +6,15 @@ Also, the older deprecated [vim-powerline][a] uses different font codes compared
If you are using rxvt-unicode, try using an odd font size, 11, 13, 15 etc. in your .Xdefaults
### The powerline font symbols are partially messed up.
You are likely using the [fontconfig](https://powerline.readthedocs.org/en/latest/installation/linux.html#font-installation) method. If that is the case, you need to override the space character like so:
if !exists('g:airline_symbols')
let g:airline_symbols = {}
endif
let g:airline_symbols.space = "\ua0"
### There is a pause when leaving insert mode
You need to set `ttimeoutlen` to a low number; 50 is recommended.