Compare commits
2 Commits
8d1379d7ba
...
e178b0d6a5
| Author | SHA1 | Date | |
|---|---|---|---|
| e178b0d6a5 | |||
| 756373e673 |
@ -185,7 +185,7 @@ end)
|
||||
pcall(function()
|
||||
require('mason').setup()
|
||||
require('mason-lspconfig').setup({
|
||||
ensure_installed = {"lua_ls", "ts_ls", "pyright", "rust_analyzer"}
|
||||
ensure_installed = {"lua_ls", "vtsls", "pyright", "rust_analyzer"}
|
||||
})
|
||||
end)
|
||||
|
||||
@ -193,9 +193,9 @@ end)
|
||||
pcall(function()
|
||||
local lspconfig = require('lspconfig')
|
||||
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
||||
|
||||
|
||||
-- Common LSP setup
|
||||
local servers = {"lua_ls", "ts_ls", "pyright", "rust_analyzer"}
|
||||
local servers = {"lua_ls", "vtsls", "pyright", "rust_analyzer"}
|
||||
for _, lsp in ipairs(servers) do
|
||||
lspconfig[lsp].setup({
|
||||
capabilities = capabilities
|
||||
|
||||
1
.zshrc
1
.zshrc
@ -116,6 +116,7 @@ export PATH="${HOME}/.local/bin:/opt/homebrew/bin:/opt/homebrew/sbin:${HOME}/.ca
|
||||
export TMPDIR=$(getconf DARWIN_USER_TEMP_DIR)
|
||||
|
||||
### ALIASES
|
||||
alias n='npm'
|
||||
alias d='docker'
|
||||
alias D='lazydocker'
|
||||
alias dps='docker ps -a --format "table {{.ID}}\t{{.Image}}\t{{.RunningFor}}\t{{.Status}}\t{{.Names}}"'
|
||||
|
||||
16
Library/Application Support/VSCodium/User/settings.json
Normal file
16
Library/Application Support/VSCodium/User/settings.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"editor.guides.indentation": true,
|
||||
"editor.wordWrapColumn": 120,
|
||||
"editor.guides.highlightActiveIndentation": "always",
|
||||
"editor.rulers": [80, 120],
|
||||
"workbench.colorTheme": "Default Light Modern",
|
||||
"workbench.iconTheme": "material-icon-theme",
|
||||
"redhat.telemetry.enabled": false,
|
||||
"debug.onTaskErrors": "showErrors",
|
||||
"[vue]": {
|
||||
"editor.defaultFormatter": "Vue.volar"
|
||||
},
|
||||
"explorer.confirmDelete": false,
|
||||
"git.blame.editorDecoration.enabled": true,
|
||||
"git.openRepositoryInParentFolders": "always"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user