| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | require('default-config')vim.cmd('luafile ' .. CONFIG_PATH .. '/lv-config.lua')require('settings')require('plugins')require('lv-utils')require('lv-autocommands')require('keymappings')require('colorscheme') -- This plugin must be required somewhere after nvimtree. Placing it before will break navigation keymappingsrequire('lv-galaxyline')require('lv-telescope')require('lv-treesitter')require('lv-autopairs')require('lv-which-key')-- LSPrequire('lsp')-- TODO should I put this in the filetype files?if O.lang.java.active then require('lsp.java-ls') endif O.lang.clang.active then require('lsp.clangd') endif O.lang.sh.active then require('lsp.bash-ls') endif O.lang.cmake.active then require('lsp.cmake-ls') endif O.lang.css.active then require('lsp.css-ls') endif O.lang.dart.active then require('lsp.dart-ls') endif O.lang.docker.active then require('lsp.docker-ls') endif O.lang.efm.active then require('lsp.efm-general-ls') endif O.lang.elm.active then require('lsp.elm-ls') endif O.lang.emmet.active then require('lsp.emmet-ls') endif O.lang.graphql.active then require('lsp.graphql-ls') endif O.lang.go.active then require('lsp.go-ls') endif O.lang.html.active then require('lsp.html-ls') endif O.lang.json.active then require('lsp.json-ls') endif O.lang.kotlin.active then require('lsp.kotlin-ls') endif O.lang.latex.active then require('lsp.latex-ls') endif O.lang.lua.active then require('lsp.lua-ls') endif O.lang.php.active then require('lsp.php-ls') endif O.lang.python.active then require('lsp.python-ls') endif O.lang.ruby.active then require('lsp.ruby-ls') endif O.lang.rust.active then require('lsp.rust-ls') endif O.lang.svelte.active then require('lsp.svelte-ls') endif O.lang.terraform.active then require('lsp.terraform-ls') endif O.lang.tailwindcss.active then require('lsp.tailwindcss-ls') endif O.lang.vim.active then require('lsp.vim-ls') endif O.lang.yaml.active then require('lsp.yaml-ls') endif O.lang.elixer.active then require('lsp.elixer-ls') endif O.lang.tsserver.active then    require('lsp.js-ts-ls')    require('lsp.angular-ls')    require('lsp.vue-ls')end
 |