diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index 79e04a1..f4a57f0 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -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" } -} \ No newline at end of file +} diff --git a/raycast-export/Raycast 2025-03-20 15.10.46.rayconfig b/raycast-export/Raycast 2025-03-20 15.10.46.rayconfig new file mode 100644 index 0000000..dbb2784 Binary files /dev/null and b/raycast-export/Raycast 2025-03-20 15.10.46.rayconfig differ diff --git a/vscode-neovim/init.vim b/vscode-neovim/init.vim index 448ccdd..6e593f7 100644 --- a/vscode-neovim/init.vim +++ b/vscode-neovim/init.vim @@ -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 :nohlsearch + " Make yank use system clipboard as default :nnoremap y (v:register ==# '"' ? '"+' : '') . 'y' :nnoremap yy (v:register ==# '"' ? '"+' : '') . 'yy' diff --git a/zed/settings.json b/zed/settings.json index 35cb926..5fe7f72 100644 --- a/zed/settings.json +++ b/zed/settings.json @@ -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" + } + } }