chore: Updates

This commit is contained in:
Pratik Tripathy
2024-12-14 21:31:41 +05:30
parent dad9f3f88c
commit 3f49341ba1
10 changed files with 151 additions and 45 deletions

View File

@@ -290,8 +290,7 @@
"sql-formatter.uppercase": true,
"sql-formatter.dialect": "pl/sql",
// Codium
"codium.codeCompletion.enable": true,
// Windsurf
"windsurf.enableSupercomplete": false,
"windsurf.enableAutocomplete": false
}

View File

@@ -33,7 +33,7 @@ Recent File List Entry Count=11
Restore Window Configuration=true
SDI Mode=false
Save Meta Infos=true
Show Full Path in Title=false
Show Full Path in Title=true
Show Menu Bar=true
Show Status Bar=true
Show Symbol In Navigation Bar=true
@@ -211,9 +211,9 @@ SetEditor=false
[MainWindow]
2 screens: Height=1359
2 screens: Width=1279
2560x1440 screen: Height=1372
2560x1440 screen: Width=1278
2560x1440 screen: Window-Maximized=true
2 screens: Window-Maximized=true
2560x1440 screen: Height=1359
2560x1440 screen: Width=1279
ToolBarsMovable=Disabled
[PluginSymbolViewer]

View File

@@ -1,20 +0,0 @@
[Kate Vi Input Mode Settings]
Command Mode Mapping Keys=
Command Mode Mappings=
Command Mode Mappings Recursion=
Insert Mode Mapping Keys=
Insert Mode Mappings=
Insert Mode Mappings Recursion=
Macro Completions=
Macro Contents=
Macro Registers=
Map Leader=\\
Normal Mode Mapping Keys=
Normal Mode Mappings=
Normal Mode Mappings Recursion=
ViRegisterContents=\s - Make 3 activities: existing config in dotfiles did NOT work - remove them\n,g,g77eDM2Bya2p\n,
ViRegisterFlags=1,0,1,0
ViRegisterNames=",-,0,^
Visual Mode Mapping Keys=
Visual Mode Mappings=
Visual Mode Mappings Recursion=

View File

@@ -0,0 +1,33 @@
// Zed keymap
//
// For information on binding keys, see the Zed
// documentation: https://zed.dev/docs/key-bindings
//
// To see the default key bindings run `zed: open default keymap`
// from the command palette.
[
{
"context": "Workspace",
"bindings": {
"shift shift": "file_finder::Toggle"
}
},
{
"bindings": {
"ctrl-k z": "workspace::ToggleZoom"
}
},
{
"context": "Workspace",
"bindings": {
"ctrl ctrl": "command_palette::Toggle"
}
},
{
"context": "Editor",
"bindings": {
// "j k": ["workspace::SendKeystrokes", "escape"]
"ctrl-alt-j": "journal::NewJournalEntry"
}
}
]

View File

@@ -0,0 +1,95 @@
// 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 `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"telemetry": { "diagnostics": false, "metrics": false },
"assistant": {
"default_model": {
"provider": "zed.dev",
"model": "claude-3-5-sonnet-latest"
},
"version": "2"
},
"features": {
"inline_completion_provider": "none"
},
"base_keymap": "VSCode",
"vim_mode": true,
"ui_font_size": 16,
"buffer_font_size": 18,
"buffer_font_family": "FuraCode Nerd Font",
"buffer_line_height": { "custom": 1.5 },
"tabs": {
"file_icons": true,
"git_status": true
},
"outline_panel": {
"indent_size": 15,
"scrollbar": {
"show": "auto"
}
},
"project_panel": {
"indent_size": 15,
"scrollbar": {
"show": "auto"
}
},
"terminal": {
"font_family": "FuraCode Nerd Font",
"font_size": 18,
"copy_on_select": true
},
// "show_whitespaces": "boundary",
"soft_wrap": "editor_width",
"tab_size": 4,
"unnecessary_code_fade": 0.5,
"git": {
"git_gutter": "tracked_files",
"gutter_debounce": null,
"inline_blame": {
"enabled": true,
"delay_ms": 500
}
},
"inlay_hints": {
"enabled": true
},
"journal": {
"path": "~/Code/",
"hour_format": "hour24"
},
"file_types": {
"Shell": ["sh", "bash", "zsh"]
},
// "lsp": {
// "rust-analyzer": {
// "initialization_options": {
// "check": {
// "command": "clippy"
// }
// }
// }
// },
"theme": {
"mode": "system",
"light": "One Light",
"dark": "Github Dark Dimmed"
}
}