mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
chore: Updates
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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=
|
||||
33
common/.config/zed/keymap.json
Normal file
33
common/.config/zed/keymap.json
Normal 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"
|
||||
}
|
||||
}
|
||||
]
|
||||
95
common/.config/zed/settings.json
Normal file
95
common/.config/zed/settings.json
Normal 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"
|
||||
}
|
||||
}
|
||||
@@ -59,8 +59,8 @@ map <C-h> <C-w>h
|
||||
map <C-l> <C-w>l
|
||||
|
||||
" Navigate buffers
|
||||
nnoremap <Tab> :bnext<CR>
|
||||
nnoremap <S-Tab> :bprevious<CR>
|
||||
nnoremap ]b :bnext<CR>
|
||||
nnoremap [b :bprevious<CR>
|
||||
|
||||
" Navigate Quickfixs
|
||||
nnoremap [q cprev
|
||||
|
||||
2
common/.vscode/extensions/extensions.json
vendored
2
common/.vscode/extensions/extensions.json
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user