mirror of
https://github.com/mikkelsvartveit/dotfiles.git
synced 2025-12-22 11:12:39 +00:00
Updates from MBP
This commit is contained in:
parent
afb1c81942
commit
efaf5fea5a
4 changed files with 12 additions and 3 deletions
|
|
@ -6,7 +6,7 @@
|
|||
"code_runner.nvim": { "branch": "main", "commit": "dcedccbf969a0f3bc00db446172b4966e83101dd" },
|
||||
"git-conflict.nvim": { "branch": "main", "commit": "80bc8931d4ed8c8c4d289a08e1838fcf4741408d" },
|
||||
"gitsigns.nvim": { "branch": "main", "commit": "1ef74b546732f185d0f806860fa5404df7614f28" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "48b52b5cfcf8f88ed0aff8fde573a5cc20b1306d" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
|
||||
"leap.nvim": { "branch": "main", "commit": "c6bfb191f1161fbabace1f36f578a20ac6c7642c" },
|
||||
"markdown-preview.nvim": { "branch": "master", "commit": "a923f5fc5ba36a3b17e289dc35dc17f66d0548ee" },
|
||||
"neoscroll.nvim": { "branch": "master", "commit": "4e0428a41c6ec191df543fc95349f6e1c598e53f" },
|
||||
|
|
@ -24,4 +24,4 @@
|
|||
"vim-repeat": { "branch": "master", "commit": "65846025c15494983dafe5e3b46c8f88ab2e9635" },
|
||||
"vim-surround": { "branch": "master", "commit": "3d188ed2113431cf8dac77be61b842acb64433d9" },
|
||||
"vim-visual-multi": { "branch": "master", "commit": "a6975e7c1ee157615bbc80fc25e4392f71c344d4" }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
BIN
raycast-export/Raycast 2025-03-20 15.10.46.rayconfig
Normal file
BIN
raycast-export/Raycast 2025-03-20 15.10.46.rayconfig
Normal file
Binary file not shown.
|
|
@ -18,6 +18,9 @@ set scrolloff=4
|
|||
" Allow using uppercase :W to save
|
||||
command W call VSCodeCall('workbench.action.files.save')
|
||||
|
||||
" Press Enter to clear search highlighting
|
||||
nnoremap <silent><CR> :nohlsearch<CR>
|
||||
|
||||
" Make yank use system clipboard as default
|
||||
:nnoremap <expr> y (v:register ==# '"' ? '"+' : '') . 'y'
|
||||
:nnoremap <expr> yy (v:register ==# '"' ? '"+' : '') . 'yy'
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
// custom settings, run `zed: open default settings` from the
|
||||
// command palette (cmd-shift-p / ctrl-shift-p)
|
||||
{
|
||||
"show_edit_predictions": false,
|
||||
"ssh_connections": [
|
||||
{
|
||||
"host": "idun",
|
||||
|
|
@ -43,5 +44,10 @@
|
|||
"light": "One Light",
|
||||
"dark": "One Dark"
|
||||
},
|
||||
"ui_font_family": ".SystemUIFont"
|
||||
"ui_font_family": ".SystemUIFont",
|
||||
"languages": {
|
||||
"Markdown": {
|
||||
"format_on_save": "on"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue