update plugins
This commit is contained in:
parent
4b8b01481c
commit
2551b7bb8b
4
ftplugin/python.lua
Normal file
4
ftplugin/python.lua
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
vim.bo.tabstop = 2
|
||||||
|
vim.bo.shiftwidth = 2
|
||||||
|
vim.bo.expandtab = true
|
||||||
|
vim.bo.softtabstop = 2
|
@ -26,7 +26,7 @@ require("lazy").setup {
|
|||||||
-- Fuzzy find everything and everywhere
|
-- Fuzzy find everything and everywhere
|
||||||
{
|
{
|
||||||
"nvim-telescope/telescope.nvim",
|
"nvim-telescope/telescope.nvim",
|
||||||
tag = "0.1.5",
|
tag = "0.1.8",
|
||||||
dependencies = { "nvim-lua/plenary.nvim", "BurntSushi/ripgrep" }
|
dependencies = { "nvim-lua/plenary.nvim", "BurntSushi/ripgrep" }
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -50,6 +50,8 @@ require("lazy").setup {
|
|||||||
-- Integration wiht dap
|
-- Integration wiht dap
|
||||||
{ "mfussenegger/nvim-dap" },
|
{ "mfussenegger/nvim-dap" },
|
||||||
{ "rcarriga/nvim-dap-ui" },
|
{ "rcarriga/nvim-dap-ui" },
|
||||||
|
-- dap dependency
|
||||||
|
{ "nvim-neotest/nvim-nio" },
|
||||||
|
|
||||||
-- Completion
|
-- Completion
|
||||||
{ "hrsh7th/cmp-nvim-lsp" },
|
{ "hrsh7th/cmp-nvim-lsp" },
|
||||||
@ -81,7 +83,7 @@ require("lazy").setup {
|
|||||||
-- Line at the top of the screen with all opened buffers
|
-- Line at the top of the screen with all opened buffers
|
||||||
{
|
{
|
||||||
"akinsho/bufferline.nvim",
|
"akinsho/bufferline.nvim",
|
||||||
tag = "v4.5.0",
|
tag = "v4.6.0",
|
||||||
dependencies = "nvim-tree/nvim-web-devicons"
|
dependencies = "nvim-tree/nvim-web-devicons"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ lspconfig.cssls.setup {}
|
|||||||
|
|
||||||
lspconfig.jsonls.setup {}
|
lspconfig.jsonls.setup {}
|
||||||
|
|
||||||
lspconfig.prosemd_lsp.setup {}
|
lspconfig.marksman.setup {}
|
||||||
|
|
||||||
|
|
||||||
-- lua_ls LSP setup via Neodev extension which provides additional functionality
|
-- lua_ls LSP setup via Neodev extension which provides additional functionality
|
||||||
|
@ -9,7 +9,6 @@ require("neo-tree").setup({
|
|||||||
popup_border_style = "rounded",
|
popup_border_style = "rounded",
|
||||||
enable_git_status = true,
|
enable_git_status = true,
|
||||||
enable_diagnostics = 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
|
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_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
|
sort_function = nil, -- use a custom function for sorting files and directories in the tree
|
||||||
|
Loading…
Reference in New Issue
Block a user