feat: add asm-lsp setup
This commit is contained in:
parent
5a85ef99ff
commit
09e5cd383f
@ -46,6 +46,7 @@ with final.pkgs.lib; let
|
|||||||
cmp-cmdline-history # cmp command line history suggestions
|
cmp-cmdline-history # cmp command line history suggestions
|
||||||
copilot-lua # Github Copilot https://github.com/zbirenbaum/copilot.lua/
|
copilot-lua # Github Copilot https://github.com/zbirenbaum/copilot.lua/
|
||||||
copilot-cmp # Add Copilot as a cmp source # https://github.com/zbirenbaum/copilot-cmp/
|
copilot-cmp # Add Copilot as a cmp source # https://github.com/zbirenbaum/copilot-cmp/
|
||||||
|
# nvim-lspconfig
|
||||||
# ^ nvim-cmp extensions
|
# ^ nvim-cmp extensions
|
||||||
|
|
||||||
# git integration plugins
|
# git integration plugins
|
||||||
@ -99,6 +100,7 @@ with final.pkgs.lib; let
|
|||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
# language servers, etc.
|
# language servers, etc.
|
||||||
clang-tools
|
clang-tools
|
||||||
|
asm-lsp # Assembly language server
|
||||||
lua-language-server
|
lua-language-server
|
||||||
nil # nix LSP
|
nil # nix LSP
|
||||||
nodejs_20
|
nodejs_20
|
||||||
|
20
nvim/ftplugin/asm.lua
Normal file
20
nvim/ftplugin/asm.lua
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
-- Exit if the language server isn't available
|
||||||
|
if vim.fn.executable('asm-lsp') ~= 1 then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
-- require'lspconfig'.asm_lsp.setup{}
|
||||||
|
|
||||||
|
local root_files = {
|
||||||
|
'.asm-lsp.toml',
|
||||||
|
'.vscode',
|
||||||
|
'.git',
|
||||||
|
}
|
||||||
|
|
||||||
|
vim.lsp.start {
|
||||||
|
name = 'asm-lsp',
|
||||||
|
cmd = { 'asm-lsp' },
|
||||||
|
root_dir = vim.fs.dirname(vim.fs.find(root_files, { upward = true })[1]),
|
||||||
|
capabilities = require('user.lsp').make_client_capabilities(),
|
||||||
|
-- capabilities = { offsetEncoding = "utf-8" },
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user