Skip to content

Instantly share code, notes, and snippets.

@AlixShahid
Created November 7, 2021 14:04
Show Gist options
  • Select an option

  • Save AlixShahid/b95d219ddfce26cb0334d08a74451fa9 to your computer and use it in GitHub Desktop.

Select an option

Save AlixShahid/b95d219ddfce26cb0334d08a74451fa9 to your computer and use it in GitHub Desktop.
Medium-Setting Up Neovim for Web Development - 4
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 = ''
},
})
@AlixShahid

Copy link
Copy Markdown
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment