diff options
| author | Daniel Schadt <kingdread@gmx.de> | 2022-02-05 00:50:38 +0100 | 
|---|---|---|
| committer | Daniel Schadt <kingdread@gmx.de> | 2022-02-05 00:50:38 +0100 | 
| commit | 3793c73983a49e854d8cd513b24e25df2788bbbd (patch) | |
| tree | 2b0da914323b110b6b5c7b7e1e4504882f226797 | |
| parent | a41a51db0fe0ef805bfd43af793f70c5350dbd91 (diff) | |
| download | dotfiles-3793c73983a49e854d8cd513b24e25df2788bbbd.tar.gz dotfiles-3793c73983a49e854d8cd513b24e25df2788bbbd.tar.bz2 dotfiles-3793c73983a49e854d8cd513b24e25df2788bbbd.zip | |
nvim: better lsp icons
We usually have a font that supports them, so let's use the nice unicode
defaults
| -rw-r--r-- | neovim/.config/nvim/init.vim | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/neovim/.config/nvim/init.vim b/neovim/.config/nvim/init.vim index 45e1ece..da9d6d1 100644 --- a/neovim/.config/nvim/init.vim +++ b/neovim/.config/nvim/init.vim @@ -146,10 +146,7 @@ lsp_status.register_progress()  lsp_status.config({    current_function = false,    kind_labels = kind_labels, -  indicator_errors = "×", -  indicator_warnings = "!", -  indicator_info = "i", -  indicator_hint = "›", +  indicator_hint = '?',    -- the default is a wide codepoint which breaks absolute and relative    -- line counts if placed before airline's Z section    status_symbol = "", | 
