mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-11-20 11:55:34 +00:00
Some checks failed
tinymist::auto_tag / auto-tag (push) Has been cancelled
tinymist::ci / Duplicate Actions Detection (push) Has been cancelled
tinymist::ci / Check Clippy, Formatting, Completion, Documentation, and Tests (Linux) (push) Has been cancelled
tinymist::ci / Check Minimum Rust version and Tests (Windows) (push) Has been cancelled
tinymist::ci / prepare-build (push) Has been cancelled
tinymist::gh_pages / build-gh-pages (push) Has been cancelled
tinymist::ci / announce (push) Has been cancelled
tinymist::ci / build (push) Has been cancelled
Although we don't have enough tests about utf-8 position encoding, i.e. it is not good to decide to use utf-8, it is completely wrong to not passing a decided encoding back to client on initialization. Edit: it doesn't work correctly under utf-8, so we currently always use utf-16. We may fix it in v0.14
63 lines
1.6 KiB
Lua
63 lines
1.6 KiB
Lua
local tinymist = require("others.tinymist")[2]
|
|
|
|
-- set binary path
|
|
tinymist.opts.servers.tinymist.cmd = { "tinymist" }
|
|
|
|
vim.lsp.config("tinymist", tinymist.opts.servers.tinymist)
|
|
|
|
|
|
return {
|
|
{ "mason-org/mason.nvim", version = "^1.0.0" },
|
|
{ "mason-org/mason-lspconfig.nvim", version = "^1.0.0" },
|
|
|
|
-- spread tinymist
|
|
tinymist,
|
|
|
|
-- change some telescope options and a keymap to browse plugin files
|
|
{
|
|
"nvim-telescope/telescope.nvim",
|
|
keys = {
|
|
-- add a keymap to browse plugin files
|
|
-- stylua: ignore
|
|
{
|
|
"<leader>fp",
|
|
function() require("telescope.builtin").find_files({ cwd = require("lazy.core.config").options.root }) end,
|
|
desc = "Find Plugin File",
|
|
},
|
|
},
|
|
-- change some options
|
|
opts = {
|
|
defaults = {
|
|
layout_strategy = "horizontal",
|
|
layout_config = { prompt_position = "top" },
|
|
sorting_strategy = "ascending",
|
|
winblend = 0,
|
|
},
|
|
},
|
|
},
|
|
|
|
-- add more treesitter parsers
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = {
|
|
ensure_installed = {
|
|
"bash",
|
|
"json",
|
|
"lua",
|
|
"markdown",
|
|
"markdown_inline",
|
|
"vim",
|
|
},
|
|
},
|
|
},
|
|
|
|
-- add any tools you want to have installed below
|
|
{
|
|
"williamboman/mason.nvim",
|
|
opts = {
|
|
ensure_installed = {
|
|
"stylua",
|
|
},
|
|
},
|
|
},
|
|
}
|