mirror of https://github.com/LazyVim/starter
update
parent
7e0ba74643
commit
f95d4ec927
|
@ -19,6 +19,7 @@ require("lazy").setup({
|
|||
{ import = "lazyvim.plugins.extras.lang.typescript" },
|
||||
{ import = "lazyvim.plugins.extras.lang.json" },
|
||||
{ import = "lazyvim.plugins.extras.ui.mini-animate" },
|
||||
{ import = "lazyvim.plugins.extras.util.project" },
|
||||
-- import/override with your plugins
|
||||
{ import = "plugins" },
|
||||
},
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
-- Options are automatically loaded before lazy.nvim startup
|
||||
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
||||
-- Add any additional options here
|
||||
local opt = vim.opt
|
||||
opt.wrap = true
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
return {
|
||||
-- tmux vim
|
||||
{ "christoomey/vim-tmux-navigator" },
|
||||
}
|
|
@ -17,11 +17,19 @@ return {
|
|||
"css-lsp",
|
||||
"bash-language-server",
|
||||
"python-lsp-server",
|
||||
"java-language-server",
|
||||
"jdtls",
|
||||
"google-java-format",
|
||||
"rust-analyzer",
|
||||
"rustfmt",
|
||||
"helm-ls",
|
||||
"erlang-ls",
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
"simrat39/symbols-outline.nvim",
|
||||
cmd = "SymbolsOutline",
|
||||
keys = { { "<leader>cs", "<cmd>SymbolsOutline<cr>", desc = "Symbols Outline" } },
|
||||
config = true,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue