Created
April 18, 2024 17:56
-
-
Save adibhanna/66673edfec11d702d56f021ecaebd6be to your computer and use it in GitHub Desktop.
zed settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"theme": "Gruvbox Dark Hard", | |
"base_keymap": "VSCode", | |
"buffer_font_family": "BerkeleyMono Nerd Font", | |
"buffer_font_size": 15, | |
"vim_mode": true, | |
"relative_line_numbers": true, | |
"cursor_blink": false, | |
"scrollbar": { | |
"show": "never" | |
}, | |
"buffer_line_height": { | |
"custom": 1.7 | |
}, | |
"terminal": { | |
"font_family": "BerkeleyMono Nerd Font", | |
"font_size": 15, | |
"line_height": { | |
"custom": 1.7 | |
} | |
}, | |
"inlay_hints": { | |
"enabled": false | |
}, | |
"lsp": { | |
"gopls": { | |
"initialization_options": { | |
"gofumpt": true, | |
"usePlaceholders": true, | |
"staticcheck": true, | |
"codelenses": { | |
"gc_details": true, | |
"generate": true, | |
"regenerate_cgo": true, | |
"tidy": true, | |
"upgrade_dependency": true, | |
"vendor": true | |
}, | |
"analysis": { | |
"completeUnimported": true, | |
"staticcheck": true, | |
"unusedParams": true, | |
"unusedWrite": true | |
}, | |
"hints": { | |
"assignVariableTypes": true, | |
"compositeLiteralFields": true, | |
"compositeLiteralTypes": true, | |
"constantValues": true, | |
"functionTypeParameters": true, | |
"parameterNames": true, | |
"rangeVariableTypes": true | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment