File tree 3 files changed +57
-57
lines changed
3 files changed +57
-57
lines changed Original file line number Diff line number Diff line change @@ -87,32 +87,32 @@ Use the `setup` function to modify default parameters.
87
87
``` lua
88
88
navic .setup {
89
89
icons = {
90
- File = " " ,
90
+ File = " " ,
91
91
Module = " " ,
92
- Namespace = " " ,
92
+ Namespace = " " ,
93
93
Package = " " ,
94
- Class = " " ,
95
- Method = " " ,
94
+ Class = " " ,
95
+ Method = " " ,
96
96
Property = " " ,
97
97
Field = " " ,
98
98
Constructor = " " ,
99
- Enum = " 練 " ,
100
- Interface = " 練 " ,
101
- Function = " " ,
102
- Variable = " " ,
103
- Constant = " " ,
104
- String = " " ,
105
- Number = " " ,
99
+ Enum = " " ,
100
+ Interface = " " ,
101
+ Function = " " ,
102
+ Variable = " " ,
103
+ Constant = " " ,
104
+ String = " " ,
105
+ Number = " " ,
106
106
Boolean = " ◩ " ,
107
- Array = " " ,
108
- Object = " " ,
109
- Key = " " ,
110
- Null = " ﳠ " ,
107
+ Array = " " ,
108
+ Object = " " ,
109
+ Key = " " ,
110
+ Null = " " ,
111
111
EnumMember = " " ,
112
- Struct = " " ,
112
+ Struct = " " ,
113
113
Event = " " ,
114
- Operator = " " ,
115
- TypeParameter = " " ,
114
+ Operator = " " ,
115
+ TypeParameter = " " ,
116
116
},
117
117
lsp = {
118
118
auto_attach = false ,
@@ -360,7 +360,7 @@ If you have a creative use case and want the raw context data to work with, you
360
360
{
361
361
name = " myclass" ,
362
362
type = " Class" ,
363
- icon = " " ,
363
+ icon = " " ,
364
364
kind = 5 ,
365
365
scope = {
366
366
start = { line = 1 , character = 0 },
@@ -370,7 +370,7 @@ If you have a creative use case and want the raw context data to work with, you
370
370
{
371
371
name = " mymethod" ,
372
372
type = " Method" ,
373
- icon = " " ,
373
+ icon = " " ,
374
374
kind = 6 ,
375
375
scope = {
376
376
start = { line = 2 , character = 4 },
Original file line number Diff line number Diff line change @@ -242,32 +242,32 @@ Use |navic.setup| to override any of the default options
242
242
Defaults >lua
243
243
navic.setup {
244
244
icons = {
245
- File = " ",
245
+ File = " ",
246
246
Module = " ",
247
- Namespace = " ",
247
+ Namespace = " ",
248
248
Package = " ",
249
- Class = " ",
250
- Method = " ",
249
+ Class = " ",
250
+ Method = " ",
251
251
Property = " ",
252
252
Field = " ",
253
253
Constructor = " ",
254
- Enum = "練 ",
255
- Interface = "練 ",
256
- Function = " ",
257
- Variable = " ",
258
- Constant = " ",
259
- String = " ",
260
- Number = " ",
254
+ Enum = " ",
255
+ Interface = " ",
256
+ Function = " ",
257
+ Variable = " ",
258
+ Constant = " ",
259
+ String = " ",
260
+ Number = " ",
261
261
Boolean = "◩ ",
262
- Array = " ",
263
- Object = " ",
264
- Key = " ",
265
- Null = "ﳠ ",
262
+ Array = " ",
263
+ Object = " ",
264
+ Key = " ",
265
+ Null = " ",
266
266
EnumMember = " ",
267
- Struct = " ",
267
+ Struct = " ",
268
268
Event = " ",
269
- Operator = " ",
270
- TypeParameter = " ",
269
+ Operator = " ",
270
+ TypeParameter = " ",
271
271
},
272
272
lsp = {
273
273
auto_attach = false,
Original file line number Diff line number Diff line change @@ -6,33 +6,33 @@ local M = {}
6
6
7
7
local config = {
8
8
icons = {
9
- [1 ] = " " , -- File
9
+ [1 ] = " " , -- File
10
10
[2 ] = " " , -- Module
11
- [3 ] = " " , -- Namespace
11
+ [3 ] = " " , -- Namespace
12
12
[4 ] = " " , -- Package
13
- [5 ] = " " , -- Class
14
- [6 ] = " " , -- Method
13
+ [5 ] = " " , -- Class
14
+ [6 ] = " " , -- Method
15
15
[7 ] = " " , -- Property
16
16
[8 ] = " " , -- Field
17
17
[9 ] = " " , -- Constructor
18
- [10 ] = " 練 " , -- Enum
19
- [11 ] = " 練 " , -- Interface
20
- [12 ] = " " , -- Function
21
- [13 ] = " " , -- Variable
22
- [14 ] = " " , -- Constant
23
- [15 ] = " " , -- String
24
- [16 ] = " " , -- Number
18
+ [10 ] = " " , -- Enum
19
+ [11 ] = " " , -- Interface
20
+ [12 ] = " " , -- Function
21
+ [13 ] = " " , -- Variable
22
+ [14 ] = " " , -- Constant
23
+ [15 ] = " " , -- String
24
+ [16 ] = " " , -- Number
25
25
[17 ] = " ◩ " , -- Boolean
26
- [18 ] = " " , -- Array
27
- [19 ] = " " , -- Object
28
- [20 ] = " " , -- Key
29
- [21 ] = " ﳠ " , -- Null
26
+ [18 ] = " " , -- Array
27
+ [19 ] = " " , -- Object
28
+ [20 ] = " " , -- Key
29
+ [21 ] = " " , -- Null
30
30
[22 ] = " " , -- EnumMember
31
- [23 ] = " " , -- Struct
31
+ [23 ] = " " , -- Struct
32
32
[24 ] = " " , -- Event
33
- [25 ] = " " , -- Operator
34
- [26 ] = " " , -- TypeParameter
35
- [255 ] = " " , -- Macro
33
+ [25 ] = " " , -- Operator
34
+ [26 ] = " " , -- TypeParameter
35
+ [255 ] = " " , -- Macro
36
36
},
37
37
highlight = false ,
38
38
separator = " > " ,
You can’t perform that action at this time.
0 commit comments