Anthony Rodriguez
123b04ba0e
Add .config/nvim/lazy-lock.json Add .config/nvim/lua/config/lazy.lua Add .config/nvim/lua/core/autocmds.lua Add .config/nvim/lua/core/options.lua Add .config/nvim/lua/plugins/autopairs.lua Add .config/nvim/lua/plugins/catppuccin.lua Add .config/nvim/lua/plugins/lsp.lua Add .config/nvim/lua/plugins/syntax.lua Add .config/nvim/lua/plugins/telescope.lua Update zed/settings.json
41 lines
908 B
JSON
41 lines
908 B
JSON
// Zed settings
|
|
//
|
|
// For information on how to configure Zed, see the Zed
|
|
// documentation: https://zed.dev/docs/configuring-zed
|
|
//
|
|
// To see all of Zed's default settings without changing your
|
|
// custom settings, run the `open default settings` command
|
|
// from the command palette or from `Zed` application menu.
|
|
{
|
|
"terminal": {
|
|
"dock": "bottom"
|
|
},
|
|
"ui_font_size": 17,
|
|
"buffer_font_size": 16,
|
|
"theme": {
|
|
"mode": "system",
|
|
"light": "Catppuccin Latte",
|
|
"dark": "Catppuccin Frappé"
|
|
},
|
|
"vim_mode": true,
|
|
"relative_line_numbers": true,
|
|
"soft_wrap": "preferred_line_length",
|
|
"preferred_line_length": 160,
|
|
"project_panel": {
|
|
"dock": "right"
|
|
},
|
|
"outline_panel": {
|
|
"dock": "right"
|
|
},
|
|
"assistant": {
|
|
"version": "2",
|
|
"dock": "left"
|
|
},
|
|
"chat_panel": {
|
|
"button": false
|
|
},
|
|
"collaboration_panel": {
|
|
"dock": "right",
|
|
"button": false
|
|
}
|
|
}
|