1
0

chore: neovim updates

This commit is contained in:
2025-07-18 18:30:01 +02:00
parent 8eb01590c3
commit 99e9bd20aa
5 changed files with 13 additions and 3 deletions

View File

@@ -4,9 +4,14 @@ return {
event = 'VeryLazy',
build = ':Cord update',
opts = {},
cond = vim.env.CORDLESS ~= 'true',
},
{
'tpope/vim-fugitive',
cmd = { 'Git' },
},
{
dir = '~/dev/share.nvim/',
opts = {},
},
}

View File

@@ -11,7 +11,7 @@ local function formatter(exe, args)
table.insert(argv, val)
end
if not args.path == false then
if args.path ~= false then
table.insert(argv, vim.fn.shellescape(vim.api.nvim_buf_get_name(0)))
end

View File

@@ -7,7 +7,7 @@ return {
'mason-org/mason-lspconfig.nvim',
version = '1.*',
opts = {
ensure_installed = { 'lua_ls', 'rust_analyzer' },
ensure_installed = { 'rust_analyzer' },
},
config = function(lazy)
local mason_lspconfig = require('mason-lspconfig')
@@ -21,7 +21,6 @@ return {
'mason-org/mason.nvim',
},
},
{
'Saghen/blink.cmp',
dependencies = { common.icons },