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