Updates from MBP

This commit is contained in:
Mikkel Svartveit 2025-03-20 15:18:47 +01:00
parent afb1c81942
commit efaf5fea5a
4 changed files with 12 additions and 3 deletions

View file

@ -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" },

Binary file not shown.

View file

@ -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'

View file

@ -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"
}
}
}