Compare commits
3 commits
6b2c9b9033
...
a7bb860403
| Author | SHA1 | Date | |
|---|---|---|---|
| a7bb860403 | |||
| 52460a3cba | |||
| 0a429f3270 |
3 changed files with 75 additions and 6 deletions
|
|
@ -67,6 +67,7 @@
|
||||||
"configs/nvim" = "~/.config/nvim"
|
"configs/nvim" = "~/.config/nvim"
|
||||||
"configs/rumdl" = "~/.config/rumdl"
|
"configs/rumdl" = "~/.config/rumdl"
|
||||||
"configs/zed" = "~/.config/zed"
|
"configs/zed" = "~/.config/zed"
|
||||||
|
"configs/systemd/user/database-ssh-tunnel@.service" = "~/.config/systemd/user/database-ssh-tunnel@.service"
|
||||||
|
|
||||||
[nvim-min.files]
|
[nvim-min.files]
|
||||||
"configs/nvim-min" = "~/.config/nvim"
|
"configs/nvim-min" = "~/.config/nvim"
|
||||||
|
|
|
||||||
|
|
@ -142,6 +142,10 @@
|
||||||
"displayMode": "onhover",
|
"displayMode": "onhover",
|
||||||
"id": "Network"
|
"id": "Network"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"displayMode": "onhover",
|
||||||
|
"id": "Bluetooth"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"displayMode": "onhover",
|
"displayMode": "onhover",
|
||||||
"id": "Volume",
|
"id": "Volume",
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,40 @@
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
"languages": {
|
"languages": {
|
||||||
|
"SQL": {
|
||||||
|
"format_on_save": "on",
|
||||||
|
"formatter": {
|
||||||
|
"external": {
|
||||||
|
"command": "sleek"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Shell Script": {
|
||||||
|
"format_on_save": "on",
|
||||||
|
"formatter": {
|
||||||
|
"external": {
|
||||||
|
"command": "shfmt",
|
||||||
|
// Change `--indent 2` to match your preferred tab_size
|
||||||
|
"arguments": ["--filename", "{buffer_path}", "--indent", "2"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sass": {
|
||||||
|
"language_servers": ["biome"],
|
||||||
|
"formatter": "language_server",
|
||||||
|
"code_actions_on_format": {
|
||||||
|
"source.fixAll.biome": true,
|
||||||
|
"source.organizeImports.biome": true,
|
||||||
|
"source.action.useSortedKeys.biome": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"python": {
|
||||||
|
"format_on_save": "on",
|
||||||
|
"code_actions_on_format": {
|
||||||
|
"source.organizeImports.ruff": true,
|
||||||
|
"source.fixAll.ruff": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"Lua": {
|
"Lua": {
|
||||||
"inlay_hints": {
|
"inlay_hints": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
|
|
@ -242,12 +276,6 @@
|
||||||
"projects": [
|
"projects": [
|
||||||
{
|
{
|
||||||
"paths": ["/bcn/invoice-chile/scripts"]
|
"paths": ["/bcn/invoice-chile/scripts"]
|
||||||
},
|
|
||||||
{
|
|
||||||
"paths": ["/bcn/workflow"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"paths": ["/bcn/workflow/piloto/php/./"]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
@ -284,6 +312,18 @@
|
||||||
"paths": ["/bcn/workflow/produccion/php/./"]
|
"paths": ["/bcn/workflow/produccion/php/./"]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"host": "GetCPE-Prod",
|
||||||
|
"args": [],
|
||||||
|
"projects": [
|
||||||
|
{
|
||||||
|
"paths": ["/bcn"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"paths": ["/bcn/getcpe/produccion/./"]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"disable_ai": false,
|
"disable_ai": false,
|
||||||
|
|
@ -297,6 +337,30 @@
|
||||||
"dark": "Catppuccin Macchiato"
|
"dark": "Catppuccin Macchiato"
|
||||||
},
|
},
|
||||||
"lsp": {
|
"lsp": {
|
||||||
|
"tombi": {
|
||||||
|
"initialization_options": {
|
||||||
|
"format": {
|
||||||
|
"rules": {
|
||||||
|
"indent-sub-tables": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ruff": {
|
||||||
|
"initialization_options": {
|
||||||
|
"settings": {
|
||||||
|
// Ruff server settings go here
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"basedpyright": {
|
||||||
|
"settings": {
|
||||||
|
"basedpyright.analysis": {
|
||||||
|
"typeCheckingMode": "recommended",
|
||||||
|
"diagnosticMode": "workspace"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"biome": {
|
"biome": {
|
||||||
"enable_lsp_tasks": true,
|
"enable_lsp_tasks": true,
|
||||||
"settings": {
|
"settings": {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue