diff options
| author | eric.marin <maarin.eric@gmail.com> | 2025-03-10 18:15:17 +0100 |
|---|---|---|
| committer | eric.marin <maarin.eric@gmail.com> | 2025-03-10 18:16:27 +0100 |
| commit | 48fc6ff3424acbb41633258bf1512b797a0ad8c1 (patch) | |
| tree | 856f2b509c7bdb6b3e06b487ae85503ffeab027d /nvim/lua | |
| parent | f4d45b1821ffd69361d0266247535e95c8552f1b (diff) | |
| download | dotfiles-48fc6ff3424acbb41633258bf1512b797a0ad8c1.tar.gz dotfiles-48fc6ff3424acbb41633258bf1512b797a0ad8c1.zip | |
clean up
Diffstat (limited to '')
| -rw-r--r-- | nvim/lua/plugins/mini-starter.lua | 11 | ||||
| -rw-r--r-- | nvim/lua/plugins/nvim-lspconfig.lua | 22 | ||||
| -rw-r--r-- | nvim/lua/plugins/nvim-treesitter.lua | 1 |
3 files changed, 12 insertions, 22 deletions
diff --git a/nvim/lua/plugins/mini-starter.lua b/nvim/lua/plugins/mini-starter.lua index 8f66c4d..1532c73 100644 --- a/nvim/lua/plugins/mini-starter.lua +++ b/nvim/lua/plugins/mini-starter.lua @@ -198,11 +198,12 @@ local config = function() autoopen = true, evaluate_single = false, items = { - starter.sections.recent_files(5, false, false), - { name = "Plugin Manager", action = "Lazy", section = "Actions" }, - { name = "File Browser", action = "Oil --float", section = "Actions" }, - { name = "Neorg Index", action = "Neorg index", section = "Actions" }, - starter.sections.builtin_actions, + starter.sections.recent_files(5, false, true), + { name = "Plugin Manager", action = "Lazy", section = "Actions" }, + { name = "File Browser", action = "Oil --float", section = "Actions" }, + { name = "Neorg Index", action = "Neorg index", section = "Actions" }, + { name = 'Edit new buffer', action = 'enew', section = 'Actions' }, + { name = 'Quit Neovim', action = 'qall', section = 'Actions' }, }, header = header, footer = footer, diff --git a/nvim/lua/plugins/nvim-lspconfig.lua b/nvim/lua/plugins/nvim-lspconfig.lua index 9127c75..22435e6 100644 --- a/nvim/lua/plugins/nvim-lspconfig.lua +++ b/nvim/lua/plugins/nvim-lspconfig.lua @@ -66,11 +66,6 @@ local config = function() on_attach = on_attach, capabilities = capabilities, }) - -- cmake-language-server configuration - lspconfig.cmake.setup({ - on_attach = on_attach, - capabilities = capabilities, - }) -- haskell-language-server configuration lspconfig.hls.setup({ on_attach = on_attach, @@ -81,12 +76,6 @@ local config = function() on_attach = on_attach, capabilities = capabilities, }) - -- nixd configuration - -- lspconfig.nixd.setup({ - -- on_attach = on_attach, - -- capabilities = capabilities, - -- }) - -- typescript-language-server configuration lspconfig.ts_ls.setup({ on_attach = on_attach, capabilities = capabilities, @@ -96,12 +85,11 @@ local config = function() on_attach = on_attach, capabilities = capabilities, }) - -- vacuum configuration - -- lspconfig.vacuum.setup({ - -- -- on_attach = on_attach, - -- capabilities = capabilities, - -- filetypes = { "yaml" } - -- }) + -- mesonlsp configuration + lspconfig.mesonlsp.setup({ + on_attach = on_attach, + capabilities = capabilities, + }) end return { diff --git a/nvim/lua/plugins/nvim-treesitter.lua b/nvim/lua/plugins/nvim-treesitter.lua index 84aa7cb..103d5d9 100644 --- a/nvim/lua/plugins/nvim-treesitter.lua +++ b/nvim/lua/plugins/nvim-treesitter.lua @@ -11,6 +11,7 @@ local config = function() "regex", "diff", "cmake", + "meson", "markdown_inline", "bash", "toml", |
