mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
feat: Adds xcodebuild nvim plugin
This commit is contained in:
@@ -61,6 +61,7 @@ return {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
cmd = { "/usr/bin/sourcekit-lsp" }
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd('LspAttach', {
|
vim.api.nvim_create_autocmd('LspAttach', {
|
||||||
@@ -81,7 +82,8 @@ return {
|
|||||||
{ "]d", vim.diagnostic.goto_prev, desc = "Go to next diagnostic" },
|
{ "]d", vim.diagnostic.goto_prev, desc = "Go to next diagnostic" },
|
||||||
}, {
|
}, {
|
||||||
mode = 'n',
|
mode = 'n',
|
||||||
silent = true
|
silent = true,
|
||||||
|
noremap = true
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ require("lazy").setup({
|
|||||||
|
|
||||||
-- LSP, formatting, etc. --
|
-- LSP, formatting, etc. --
|
||||||
{ 'folke/neodev.nvim', opts = {} },
|
{ 'folke/neodev.nvim', opts = {} },
|
||||||
|
{ import = 'user.plugin.xcodebuild' },
|
||||||
{ import = 'user.plugin.lsp' },
|
{ import = 'user.plugin.lsp' },
|
||||||
{ import = 'user.plugin.lualine' },
|
{ import = 'user.plugin.lualine' },
|
||||||
{ import = 'user.plugin.treesitter' },
|
{ import = 'user.plugin.treesitter' },
|
||||||
@@ -72,5 +73,4 @@ require("lazy").setup({
|
|||||||
--{'fladson/vim-kitty', lazy=true, },
|
--{'fladson/vim-kitty', lazy=true, },
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -61,9 +61,11 @@ path_prepend \
|
|||||||
"/usr/local/bin" \
|
"/usr/local/bin" \
|
||||||
"/opt/homebrew/bin" \
|
"/opt/homebrew/bin" \
|
||||||
"/opt/homebrew/sbin" \
|
"/opt/homebrew/sbin" \
|
||||||
|
"$HOME/.local/share/gem/bin" \
|
||||||
"$GOROOT/bin" \
|
"$GOROOT/bin" \
|
||||||
"$GOPATH/bin" \
|
"$GOPATH/bin" \
|
||||||
"$XDG_DATA_HOME/bin" \
|
"$XDG_DATA_HOME/bin" \
|
||||||
|
"$HOME/.local/bin" \
|
||||||
"$SCRIPTS"
|
"$SCRIPTS"
|
||||||
|
|
||||||
# last arg will be first in $FPATH
|
# last arg will be first in $FPATH
|
||||||
@@ -207,4 +209,3 @@ alias wget="wget --hsts-file=$XDG_DATA_HOME/wget-hsts" # set wget history locat
|
|||||||
# I tried sourcing them in the the `.zshenv` files, but did not work.
|
# I tried sourcing them in the the `.zshenv` files, but did not work.
|
||||||
_source_if "$ZDOTDIR/.zshrc-local"
|
_source_if "$ZDOTDIR/.zshrc-local"
|
||||||
_source_if "$LOCAL_ENV"
|
_source_if "$LOCAL_ENV"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user