diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-02-09 10:07:01 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-02-09 10:13:36 +0300 |
commit | 02697b449ba557f61b798b46f2b39d35baa95b50 (patch) | |
tree | e2850b0432b5e7a8f26a4d6837639210a2f36aa2 /.config/nvim/lua/user/lsp/asm.lua | |
parent | 7e7505c56cbcdfb410311978e723a190293d9abd (diff) |
some changes
Diffstat (limited to '.config/nvim/lua/user/lsp/asm.lua')
-rw-r--r-- | .config/nvim/lua/user/lsp/asm.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.config/nvim/lua/user/lsp/asm.lua b/.config/nvim/lua/user/lsp/asm.lua new file mode 100644 index 0000000..04814a9 --- /dev/null +++ b/.config/nvim/lua/user/lsp/asm.lua @@ -0,0 +1,7 @@ +local lsp = require'lspconfig' + +lsp.asm_lsp.setup{ + cmd = { "asm-lsp", "--stdio" }, + filetypes = { "s", "asm", "S" }, + root_dir = lsp.util.root_pattern("Makefile", ".git"), +} |