feat: add typst lsp
This commit is contained in:
parent
d7b1584fdd
commit
d62a59904a
5 changed files with 20 additions and 6 deletions
6
init.lua
6
init.lua
|
@ -61,11 +61,13 @@ vim.g.mapleader = " "
|
||||||
vim.o.clipboard = "unnamedplus"
|
vim.o.clipboard = "unnamedplus"
|
||||||
|
|
||||||
vim.filetype.add({
|
vim.filetype.add({
|
||||||
pattern = { [".*/hypr/.*%.conf"] = "hyprlang" },
|
pattern = {
|
||||||
|
[".*/hypr/.*%.conf"] = "hyprlang",
|
||||||
|
[".*%.typ"] = "typst",
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
require("plugins")
|
require("plugins")
|
||||||
--vim.o.cmdheight = 0
|
|
||||||
|
|
||||||
vim.cmd([[
|
vim.cmd([[
|
||||||
highlight Normal guibg=none ctermbg=none
|
highlight Normal guibg=none ctermbg=none
|
||||||
|
|
|
@ -88,6 +88,14 @@ local function build()
|
||||||
sh = {
|
sh = {
|
||||||
require("formatter.filetypes.sh").shfmt,
|
require("formatter.filetypes.sh").shfmt,
|
||||||
},
|
},
|
||||||
|
typst = {
|
||||||
|
function()
|
||||||
|
return {
|
||||||
|
exe = "typstyle",
|
||||||
|
args = { "--inplace" },
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
},
|
||||||
["*"] = {
|
["*"] = {
|
||||||
require("formatter.filetypes.any").remove_trailing_whitespace,
|
require("formatter.filetypes.any").remove_trailing_whitespace,
|
||||||
},
|
},
|
||||||
|
|
|
@ -13,8 +13,8 @@ cmp.setup({
|
||||||
},
|
},
|
||||||
mapping = {
|
mapping = {
|
||||||
-- Add tab support
|
-- Add tab support
|
||||||
["<Up>"] = cmp.mapping.select_prev_item(),
|
["<S-Tab>"] = cmp.mapping.select_prev_item(),
|
||||||
["<Down>"] = cmp.mapping.select_next_item(),
|
["<Tab>"] = cmp.mapping.select_next_item(),
|
||||||
["<C-S-f>"] = cmp.mapping.scroll_docs(-4),
|
["<C-S-f>"] = cmp.mapping.scroll_docs(-4),
|
||||||
["<C-f>"] = cmp.mapping.scroll_docs(4),
|
["<C-f>"] = cmp.mapping.scroll_docs(4),
|
||||||
["<C-Space>"] = cmp.mapping.complete(),
|
["<C-Space>"] = cmp.mapping.complete(),
|
||||||
|
|
|
@ -34,3 +34,7 @@ lspconfig.bashls.setup({})
|
||||||
lspconfig.zls.setup({})
|
lspconfig.zls.setup({})
|
||||||
|
|
||||||
lspconfig.ts_ls.setup({})
|
lspconfig.ts_ls.setup({})
|
||||||
|
|
||||||
|
lspconfig.tinymist.setup({
|
||||||
|
single_file_support = true,
|
||||||
|
})
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib, ... }:
|
{ pkgs, lib ... }:
|
||||||
let
|
let
|
||||||
deps = with pkgs; [
|
deps = with pkgs; [
|
||||||
lua
|
lua
|
||||||
|
@ -46,7 +46,7 @@ pkgs.writeTextFile {
|
||||||
#!${pkgs.bash}/bin/bash
|
#!${pkgs.bash}/bin/bash
|
||||||
export PATH=${lib.makeBinPath deps}:$PATH
|
export PATH=${lib.makeBinPath deps}:$PATH
|
||||||
export LUA_PATH=${../.}/lua/?.lua
|
export LUA_PATH=${../.}/lua/?.lua
|
||||||
${pkgs.neovim}/bin/nvim -u ${../.}/init.lua $@
|
${pkgs.neovim-unwrapped}/bin/nvim -u ${../.}/init.lua $@
|
||||||
'';
|
'';
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
${pkgs.stdenv.shellDryRun} "$target"
|
${pkgs.stdenv.shellDryRun} "$target"
|
||||||
|
|
Loading…
Add table
Reference in a new issue