File tree 1 file changed +16
-4
lines changed
1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -116,15 +116,27 @@ let g:codeium_filetypes = {
116
116
117
117
Codeium is enabled by default for most filetypes.
118
118
119
- You can also _ disable_ codeium by default with the ` g:codeium_enabled `
120
- variable :
119
+ You can also _ disable_ codeium by default with the ` g:codeium_enabled ` variable,
120
+ and enable it manually per buffer by running ` :CodeiumEnable ` :
121
121
122
122
``` vim
123
123
let g:codeium_enabled = v:false
124
124
```
125
125
126
- Instead, if you would like to just disable the automatic triggering of
127
- completions:
126
+ Or you can disable codeium for _ all filetypes_ with the ` g:codeium_filetypes_disabled_by_default ` variable,
127
+ and use the ` g:codeium_filetypes ` variable to selectively enable codeium for specified filetypes:
128
+
129
+ ``` vim
130
+ " let g:codeium_enabled = v:true
131
+ let g:codeium_filetypes_disabled_by_default = v:true
132
+
133
+ let g:codeium_filetypes = {
134
+ \ "rust": v:true,
135
+ \ "typescript": v:true,
136
+ \ }
137
+ ```
138
+
139
+ If you would like to just disable the automatic triggering of completions:
128
140
129
141
``` vim
130
142
let g:codeium_manual = v:true
You can’t perform that action at this time.
0 commit comments