From f5319fcd7a64424ebdcd404544f1e034bcba45d3 Mon Sep 17 00:00:00 2001 From: zymon Date: Sat, 29 Mar 2025 12:00:04 +0100 Subject: [PATCH] aktu --- lua/znvim/options.lua | 12 ++++++++++++ lua/znvim/plugins/blink.lua | 36 ++++++++++++++++++++++-------------- lua/znvim/plugins/init.lua | 10 +++++++++- lua/znvim/plugins/lsp.lua | 21 ++++----------------- lua/znvim/utils.lua | 4 ++++ 5 files changed, 51 insertions(+), 32 deletions(-) create mode 100644 lua/znvim/utils.lua diff --git a/lua/znvim/options.lua b/lua/znvim/options.lua index 85f8022..f16f983 100644 --- a/lua/znvim/options.lua +++ b/lua/znvim/options.lua @@ -76,3 +76,15 @@ vim.opt.foldlevelstart = 99 vim.opt.fillchars = "eob: ,fold: ,foldopen:,foldsep: ,foldclose:" vim.opt.foldmethod = "expr" vim.opt.foldexpr = "nvim_treesitter#foldexpr()" + + +vim.diagnostic.config({ + -- virtual_text = true, + virtual_lines = { + current_line = true, + format = function(diagnostic) + return ('%s: %s [%s]'):format(diagnostic.source, diagnostic.message, diagnostic.code) + end, + }, + only_current_line = true, +}) diff --git a/lua/znvim/plugins/blink.lua b/lua/znvim/plugins/blink.lua index 52779ba..1ecf655 100644 --- a/lua/znvim/plugins/blink.lua +++ b/lua/znvim/plugins/blink.lua @@ -1,18 +1,26 @@ return { - "https://github.com/saghen/blink.cmp", - version = '1.*', + "https://github.com/saghen/blink.cmp", + version = '1.*', - ---@module 'blink.cmp' - ---@type blink.cmp.Config - opts = { - keymap = { preset = 'default' }, - appearance = { - nerd_font_variant = 'mono' + ---@module 'blink.cmp' + ---@type blink.cmp.Config + opts = { + keymap = { preset = 'default' }, + appearance = { + nerd_font_variant = 'mono' + }, + completion = { documentation = { auto_show = false } }, + sources = { + default = { "lazydev", 'lsp', 'path', 'snippets', 'buffer' }, + providers = { + lazydev = { + name = "LazyDev", + module = "lazydev.integrations.blink", + -- make lazydev completions top priority (see `:h blink.cmp`) + score_offset = 100, + }, + }, + }, }, - completion = { documentation = { auto_show = false } }, - sources = { - default = { 'lsp', 'path', 'snippets', 'buffer' }, - }, - }, - opts_extend = { "sources.default" } + opts_extend = { "sources.default" } } diff --git a/lua/znvim/plugins/init.lua b/lua/znvim/plugins/init.lua index 9f5c39d..7140578 100644 --- a/lua/znvim/plugins/init.lua +++ b/lua/znvim/plugins/init.lua @@ -126,6 +126,13 @@ return { { -- neodev "https://github.com/folke/lazydev.nvim", ft = "lua", + opts = { + library = { + -- See the configuration section for more details + -- Load luvit types when the `vim.uv` word is found + { path = "${3rd}/luv/library", words = { "vim%.uv" } }, + }, + }, }, { -- A better user experience for interacting with and manipulating marks "https://github.com/chentoast/marks.nvim", @@ -229,7 +236,7 @@ return { }, }, image = { - enabled = true, + enabled = false, doc = { inline = false, float = true, @@ -239,6 +246,7 @@ return { }, bigfile = { enabled = true }, notifier = { enabled = true }, + explorer = { enabled = true }, notify = { enabled = true }, quickfile = { enabled = true }, words = { enabled = true }, diff --git a/lua/znvim/plugins/lsp.lua b/lua/znvim/plugins/lsp.lua index 1e098a6..1f23410 100644 --- a/lua/znvim/plugins/lsp.lua +++ b/lua/znvim/plugins/lsp.lua @@ -8,16 +8,14 @@ return { }, config = function() local lspconfig = require("lspconfig") - vim.diagnostic.config({ - virtual_text = false - }) + -- vim.diagnostic.config({ + -- virtual_text = false + -- }) local opts = { noremap = true, silent = true, } vim.keymap.set("n", "e", vim.diagnostic.open_float, opts) - vim.keymap.set("n", "[d", vim.diagnostic.goto_prev, opts) - vim.keymap.set("n", "]d", vim.diagnostic.goto_next, opts) -- vim.keymap.set('n', 'q', vim.diagnostic.setloclist, opts) local on_attach = function(_, bufnr) @@ -106,7 +104,7 @@ return { local util = require("lspconfig.util") return util.root_pattern("Project.toml")(fname) or util.find_git_ancestor(fname) - or util.path.dirname(fname) + or vim.fs.dirname(fname) end, on_attach = on_attach, capabilities = capabilities, @@ -129,23 +127,12 @@ return { capabilities = capabilities, settings = { Lua = { - diagnostics = { - globals = { "vim" }, - }, telemetry = { enable = false, }, }, }, }) - - lspconfig.cssls.setup { - capabilities = capabilities, - } - - lspconfig.html.setup { - capabilities = capabilities, - } end, }, diff --git a/lua/znvim/utils.lua b/lua/znvim/utils.lua new file mode 100644 index 0000000..0e2812a --- /dev/null +++ b/lua/znvim/utils.lua @@ -0,0 +1,4 @@ +P = function(v) + print(vim.inspect(v)) + return v +end