From 2551b7bb8b7b4d8e5d558f9625b8c241081f7f74 Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Wed, 21 Aug 2024 21:25:51 +0300 Subject: [PATCH] update plugins --- ftplugin/python.lua | 4 ++++ lua/core/plugins.lua | 6 ++++-- lua/plugins/lsp.lua | 2 +- lua/plugins/neotree.lua | 1 - 4 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 ftplugin/python.lua diff --git a/ftplugin/python.lua b/ftplugin/python.lua new file mode 100644 index 0000000..9edb208 --- /dev/null +++ b/ftplugin/python.lua @@ -0,0 +1,4 @@ +vim.bo.tabstop = 2 +vim.bo.shiftwidth = 2 +vim.bo.expandtab = true +vim.bo.softtabstop = 2 diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua index 38036c0..6e9607f 100644 --- a/lua/core/plugins.lua +++ b/lua/core/plugins.lua @@ -26,7 +26,7 @@ require("lazy").setup { -- Fuzzy find everything and everywhere { "nvim-telescope/telescope.nvim", - tag = "0.1.5", + tag = "0.1.8", dependencies = { "nvim-lua/plenary.nvim", "BurntSushi/ripgrep" } }, @@ -50,6 +50,8 @@ require("lazy").setup { -- Integration wiht dap { "mfussenegger/nvim-dap" }, { "rcarriga/nvim-dap-ui" }, + -- dap dependency + { "nvim-neotest/nvim-nio" }, -- Completion { "hrsh7th/cmp-nvim-lsp" }, @@ -81,7 +83,7 @@ require("lazy").setup { -- Line at the top of the screen with all opened buffers { "akinsho/bufferline.nvim", - tag = "v4.5.0", + tag = "v4.6.0", dependencies = "nvim-tree/nvim-web-devicons" }, diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index ca87c3f..e0ca213 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -26,7 +26,7 @@ lspconfig.cssls.setup {} lspconfig.jsonls.setup {} -lspconfig.prosemd_lsp.setup {} +lspconfig.marksman.setup {} -- lua_ls LSP setup via Neodev extension which provides additional functionality diff --git a/lua/plugins/neotree.lua b/lua/plugins/neotree.lua index a8f82f5..146d5f6 100644 --- a/lua/plugins/neotree.lua +++ b/lua/plugins/neotree.lua @@ -9,7 +9,6 @@ require("neo-tree").setup({ popup_border_style = "rounded", enable_git_status = true, enable_diagnostics = true, - enable_normal_mode_for_inputs = false, -- Enable normal mode for input dialogs. open_files_do_not_replace_types = { "terminal", "trouble", "qf" }, -- when opening files, do not use windows containing these filetypes or buftypes sort_case_insensitive = false, -- used when sorting files and directories in the tree sort_function = nil, -- use a custom function for sorting files and directories in the tree