[2025-04-04] Update to neovim v0.11
https://gpanders.com/blog/whats-new-in-neovim-0-11/
This commit is contained in:
parent
9eff9122fc
commit
7603f0de8e
@ -12,7 +12,7 @@ require('plugins.treesitter')
|
|||||||
--require('plugins.noice')
|
--require('plugins.noice')
|
||||||
require('plugins.statuscol')
|
require('plugins.statuscol')
|
||||||
vim.diagnostic.config({
|
vim.diagnostic.config({
|
||||||
virtual_text = false,
|
virtual_lines = { current_line = true, },
|
||||||
underline = true,
|
underline = true,
|
||||||
signs = {
|
signs = {
|
||||||
text = {
|
text = {
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
local coq = require("coq")
|
vim.lsp.config.lua_ls =
|
||||||
local util = require("lspconfig.util")
|
{
|
||||||
require('lspconfig').lua_ls.setup(
|
|
||||||
coq.lsp_ensure_capabilities({
|
|
||||||
cmd = { os.getenv("HOME") .. "/lua-language-server/bin/lua-language-server" },
|
cmd = { os.getenv("HOME") .. "/lua-language-server/bin/lua-language-server" },
|
||||||
root_dir = util.root_pattern('init.lua'),
|
root_markers = { 'init.lua' },
|
||||||
})
|
filetypes = { 'lua' },
|
||||||
)
|
}
|
||||||
|
|
||||||
|
vim.lsp.enable({'lua_ls'})
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
local coq = require("coq")
|
|
||||||
local util = require("lspconfig.util")
|
local util = require("lspconfig.util")
|
||||||
require('lspconfig').matlab_ls.setup(
|
require('lspconfig').matlab_ls.setup(
|
||||||
coq.lsp_ensure_capabilities({
|
{
|
||||||
cmd = { "node", os.getenv("HOME") .. "/MATLAB-language-server/out/index.js", "--stdio" },
|
cmd = { "node", os.getenv("HOME") .. "/MATLAB-language-server/out/index.js", "--stdio" },
|
||||||
root_dir = util.root_pattern('mw_anchor'),
|
root_dir = util.root_pattern('mw_anchor'),
|
||||||
single_file_support = true,
|
single_file_support = true,
|
||||||
@ -13,5 +12,5 @@ require('lspconfig').matlab_ls.setup(
|
|||||||
telemetry = false
|
telemetry = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
)
|
)
|
||||||
|
@ -24,7 +24,7 @@ GetTime = function()
|
|||||||
end
|
end
|
||||||
|
|
||||||
GetLSP = function()
|
GetLSP = function()
|
||||||
local clients = vim.lsp.buf_get_clients()
|
local clients = vim.lsp.get_clients()
|
||||||
if next(clients) ~= nil then
|
if next(clients) ~= nil then
|
||||||
local name = string.format('%s',clients[1].name)
|
local name = string.format('%s',clients[1].name)
|
||||||
local root = clients[1].root_dir
|
local root = clients[1].root_dir
|
||||||
|
@ -10,7 +10,7 @@ export PATH=$PATH:~/go/bin
|
|||||||
# export PATH=$PATH:~/.zig
|
# export PATH=$PATH:~/.zig
|
||||||
|
|
||||||
# neovim
|
# neovim
|
||||||
export PATH=$PATH:/usr/bin/nvim-linux64/bin
|
export PATH="$PATH:/opt/nvim-linux-x86_64/bin"
|
||||||
|
|
||||||
# picotool
|
# picotool
|
||||||
export PATH=$PATH:~/picotool/build
|
export PATH=$PATH:~/picotool/build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user