mirror of
https://github.com/mikkelsvartveit/dotfiles.git
synced 2025-12-22 11:12:39 +00:00
Update some configs & add MCP servers
This commit is contained in:
parent
0b5c8ba97f
commit
429d1efd9a
5 changed files with 30 additions and 7 deletions
|
|
@ -21,6 +21,7 @@ abbr ws "windsurf"
|
|||
abbr lg "lazygit"
|
||||
abbr p "pnpm"
|
||||
abbr pd "pnpm dev"
|
||||
abbr pdb "pnpm run db:studio" # Launch Drizzle Studio
|
||||
abbr px "pnpm dlx"
|
||||
abbr ns "npm start"
|
||||
abbr nrs "npm run serve"
|
||||
|
|
@ -105,5 +106,3 @@ source ~/.orbstack/shell/init2.fish 2>/dev/null || :
|
|||
# Initialize zoxide
|
||||
zoxide init fish --cmd j | source
|
||||
|
||||
# Claude Code
|
||||
alias claude="~/.claude/local/claude"
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
<key>AitermURL</key>
|
||||
<string>https://api.openai.com/v1/responses</string>
|
||||
<key>AllowClipboardAccess</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>AlternateMouseScroll</key>
|
||||
<true/>
|
||||
<key>Command</key>
|
||||
|
|
@ -1968,10 +1968,12 @@
|
|||
<true/>
|
||||
<key>PromptOnQuit</key>
|
||||
<false/>
|
||||
<key>RememberWindowPositions</key>
|
||||
<true/>
|
||||
<key>ShowFullScreenTabBar</key>
|
||||
<false/>
|
||||
<key>SmartPlacement</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>SoundForEsc</key>
|
||||
<false/>
|
||||
<key>SplitPaneDimmingAmount</key>
|
||||
|
|
|
|||
|
|
@ -23,9 +23,6 @@ set statusline=%f\ %m
|
|||
set ignorecase
|
||||
set smartcase
|
||||
|
||||
" Disable mouse support (I find it more annoying than it's worth)
|
||||
set mouse=
|
||||
|
||||
" Use 2 spaces as default indentation
|
||||
set tabstop=2
|
||||
set shiftwidth=2
|
||||
|
|
|
|||
|
|
@ -395,3 +395,18 @@ require("lazy").setup({
|
|||
},
|
||||
},
|
||||
})
|
||||
|
||||
-- Update buffer when embedded terminal has made changes
|
||||
vim.api.nvim_create_autocmd({
|
||||
"BufEnter",
|
||||
"BufWinEnter",
|
||||
}, {
|
||||
group = augroup,
|
||||
pattern = "*",
|
||||
callback = function()
|
||||
if vim.fn.filereadable(vim.fn.expand("%")) == 1 then
|
||||
vim.cmd("checktime")
|
||||
end
|
||||
end,
|
||||
desc = "Check for file changes on disk",
|
||||
})
|
||||
|
|
|
|||
|
|
@ -5,6 +5,16 @@
|
|||
"type": "remote",
|
||||
"url": "https://mcp.context7.com/mcp",
|
||||
"enabled": true
|
||||
},
|
||||
"svelte": {
|
||||
"type": "remote",
|
||||
"url": "https://mcp.svelte.dev/mcp",
|
||||
"enabled": true
|
||||
},
|
||||
"chrome-devtools": {
|
||||
"type": "local",
|
||||
"command": ["npx", "-y", "chrome-devtools-mcp@latest"],
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue