Skip to content

Instantly share code, notes, and snippets.

@AD0791
Created February 19, 2020 16:32
Show Gist options
  • Save AD0791/4a762b4cdf8f4018dce4ed4e91da5d9d to your computer and use it in GitHub Desktop.
Save AD0791/4a762b4cdf8f4018dce4ed4e91da5d9d to your computer and use it in GitHub Desktop.
nvimrc
let $M_TUI_ENABLE_TRUE_COLOR=1
1
2
3
4 Plugin 'ryanoasis/vim-devicons'
5
6 Plugin 'altercation/vim-colors-solarized'
7
8
9 syntax enable
10 set background=dark
11 colorscheme solarized
12
13
14 let g:WebDevIconsUnicodeDecorateFolderNodes = 1
15 15 let g:DevIconsEnableFoldersOpenClose = 1
16 14 let g:DevIconsEnableFolderExtensionPatternMatching = 1
17 13
18 12 let g:DevIconsDefaultFolderOpenSymbol=''
19 11 let g:WebDevIconsUnicodeDecorateFolderNodesDefaultSymbol=''
20 10
21 9 " Custom icons for file extensions
22 8 let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols = {} " needed
23 7 let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['js'] = ''
24 6 let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['ts'] = 'ﯤ'
25 5 let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['json'] = 'ﬥ'
26 4
27 3 let g:WebDevIconsUnicodeDecorateFileNodesPatternSymbols = {} " needed
28 2 let g:WebDevIconsUnicodeDecorateFileNodesPatternSymbols['.test.ts'] = 'ﭧ'
29 1
30 0 " Custom icons for specific filenames
31 1 let g:WebDevIconsUnicodeDecorateFileNodesExactSymbols = {} " needed
32 2 let g:WebDevIconsUnicodeDecorateFileNodesExactSymbols['ormconfig.js'] = ' '
33 3 let g:WebDevIconsUnicodeDecorateFileNodesExactSymbols['.env'] = 'ﭩ'
34 4 let g:WebDevIconsUnicodeDecorateFileNodesExactSymbols['.editorconfig'] = ''
35 5 let g:WebDevIconsUnicodeDecorateFileNodesExactSymbols['.npmrc'] = ''
36 6 let g:WebDevIconsUnicodeDecorateFileNodesExactSymbols['src'] = ''
37
38 let g:WebDevIconsNerdTreeAfterGlyphPadding = ' '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment