diff options
author | Christian Chiarulli <[email protected]> | 2021-09-02 11:28:16 -0400 |
---|---|---|
committer | Christian Chiarulli <[email protected]> | 2021-09-02 11:28:16 -0400 |
commit | b1e35e351461ce308255c0562b404d0bdaba4651 (patch) | |
tree | d904893d418add6d9a662cbe16cc6f557fa71430 /README.md | |
parent | f5e2342f84ff848fb3ac37f6351244431ada8a9e (diff) |
fix: update example config in readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -42,7 +42,7 @@ bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/ ## Configuration file -To activate other plugins and language features use the `lv-config.lua` file provided in the `nvim` folder (`~/.config/nvim/lv-config.lua`) in the master branch or (`~/.config/lvim/config.lua`) on rolling +To install plugins configure LunarVim use the `config.lua` located here: `~/.config/lvim/config.lua` Example: @@ -73,15 +73,15 @@ lvim.keys.normal_mode["<C-s>"] = ":w<cr>" -- w = { "<cmd>Trouble lsp_workspace_diagnostics<cr>", "Diagnosticss" }, -- } --- After changing plugin config exit and reopen LunarVim, Run :PackerInstall :PackerCompile +-- Configure builtin plugins lvim.builtin.dashboard.active = true lvim.builtin.terminal.active = true --- if you don't want all the parsers change this to a table of the ones you want +-- Treesitter parsers change this to a table of the languages you want i.e. {"java", "python", javascript} lvim.builtin.treesitter.ensure_installed = "maintained" lvim.builtin.treesitter.ignore_install = { "haskell" } -lvim.builtin.treesitter.highlight.enabled = true +-- Disable virtual text lvim.lsp.diagnostics.virtual_text = false -- set a formatter if you want to override the default lsp one (if it exists) |