diff options
author | christianchiarulli <[email protected]> | 2021-06-30 18:45:40 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-06-30 18:45:40 -0400 |
commit | 9e7ad6074746a3f7d60e164be919b53ad17a33dd (patch) | |
tree | 6ccd7982f850908d317945fd8967119b298c4ffb /init.lua | |
parent | d8cf871a389d9900fa21077870a817cdb6a6b47b (diff) |
refactor autocommands
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -4,7 +4,6 @@ require('settings') require('plugins') require('colorscheme') require('lv-utils') -require('lv-autocommands') require('keymappings') require('lv-galaxyline') require('lv-telescope') @@ -35,10 +34,7 @@ if O.lang.lua.active then require('lsp.lua-ls') end if O.lang.php.active then require('lsp.php-ls') end if O.lang.python.active then require('lsp.python-ls') end if O.lang.ruby.active then require('lsp.ruby-ls') end -if O.lang.rust.active then - require('lsp.rust-ls') - require('lv-rust-tools') -end +if O.lang.rust.active then require('lsp.rust-ls') end if O.lang.svelte.active then require('lsp.svelte-ls') end if O.lang.terraform.active then require('lsp.terraform-ls') end if O.lang.tailwindcss.active then require('lsp.tailwindcss-ls') end |