diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 4b8b2df..5c9606b 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -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" }, }, diff --git a/lua/config/options.lua b/lua/config/options.lua index 3ea1454..3864da2 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -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 diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua deleted file mode 100644 index 4c66a37..0000000 --- a/lua/plugins/init.lua +++ /dev/null @@ -1,4 +0,0 @@ -return { - -- tmux vim - { "christoomey/vim-tmux-navigator" }, -} diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index de74040..465392f 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -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 = { { "cs", "SymbolsOutline", desc = "Symbols Outline" } }, + config = true, + }, }