File tree Expand file tree Collapse file tree 1 file changed +31
-31
lines changed Expand file tree Collapse file tree 1 file changed +31
-31
lines changed Original file line number Diff line number Diff line change 8585local function get_icon_for_file (filename )
8686 local extension = vim .fn .fnamemodify (filename , " :e" )
8787 local icons = {
88- lua = " " ,
89- py = " " ,
90- js = " " ,
91- ts = " " ,
92- jsx = " " ,
93- tsx = " " ,
88+ lua = " " ,
89+ py = " " ,
90+ js = " " ,
91+ ts = " " ,
92+ jsx = " " ,
93+ tsx = " " ,
9494 vue = " ﵂" ,
95- go = " " ,
96- rs = " " ,
97- c = " " ,
98- cpp = " " ,
99- h = " " ,
100- hpp = " " ,
101- java = " " ,
95+ go = " " ,
96+ rs = " " ,
97+ c = " " ,
98+ cpp = " " ,
99+ h = " " ,
100+ hpp = " " ,
101+ java = " " ,
102102 kt = " " ,
103- cs = " " ,
104- rb = " " ,
105- php = " " ,
106- html = " " ,
107- css = " " ,
108- scss = " " ,
109- json = " " ,
110- yaml = " " ,
111- yml = " " ,
112- toml = " " ,
113- xml = " " ,
114- md = " " ,
115- txt = " " ,
116- vim = " " ,
117- sh = " " ,
118- fish = " " ,
119- zsh = " " ,
120- bash = " " ,
103+ cs = " " ,
104+ rb = " " ,
105+ php = " " ,
106+ html = " " ,
107+ css = " " ,
108+ scss = " " ,
109+ json = " " ,
110+ yaml = " " ,
111+ yml = " " ,
112+ toml = " " ,
113+ xml = " " ,
114+ md = " " ,
115+ txt = " " ,
116+ vim = " " ,
117+ sh = " " ,
118+ fish = " " ,
119+ zsh = " " ,
120+ bash = " " ,
121121 }
122122 return icons [extension ] or " "
123123end
You can’t perform that action at this time.
0 commit comments