Created
November 7, 2021 14:04
-
-
Save AlixShahid/b95d219ddfce26cb0334d08a74451fa9 to your computer and use it in GitHub Desktop.
Medium-Setting Up Neovim for Web Development - 4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require('lspkind').init({ | |
| -- enables text annotations (default: true) | |
| with_text = true, | |
| -- enables text annotations (default: 'default') | |
| -- default symbol map can be either 'default' or 'codicons' for codicon preset (requires vscode-codicons font installed) | |
| preset = 'codicons', | |
| -- override preset symbols (default: {}) | |
| symbol_map = { | |
| Text = '', | |
| Method = 'ƒ', | |
| Function = '', | |
| Constructor = '', | |
| Variable = '', | |
| Class = '', | |
| Interface = 'ﰮ', | |
| Module = '', | |
| Property = '', | |
| Unit = '', | |
| Value = '', | |
| Enum = '了', | |
| Keyword = '', | |
| Snippet = '', | |
| Color = '', | |
| File = '', | |
| Folder = '', | |
| EnumMember = '', | |
| Constant = '', | |
| Struct = '' | |
| }, | |
| }) |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Setting Up Neovim for Web Development
https://xlwe.medium.com/setting-up-neovim-for-web-development-70c57c3d7d61