From 81862c85bf70507f45bb11825b7656c8ca29e51a Mon Sep 17 00:00:00 2001 From: histalek Date: Sun, 24 Apr 2022 13:45:28 +0200 Subject: [PATCH] lvim: Update config --- .config/lvim/config.lua | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.config/lvim/config.lua b/.config/lvim/config.lua index 24942ba..8c7bc5f 100644 --- a/.config/lvim/config.lua +++ b/.config/lvim/config.lua @@ -9,24 +9,31 @@ an executable Ref.:https://www.lunarvim.org/configuration/01-settings.html#example-options ]] +-- vim options +vim.opt.ignorecase = true +vim.opt.showmode = true +vim.opt.expandtab = true +vim.opt.shiftwidth = 2 +vim.opt.tabstop = 2 +vim.opt.number = true +vim.opt.relativenumber = false +vim.opt.wrap = true + -- general lvim.log.level = "warn" lvim.format_on_save = true lvim.colorscheme = "onedarker" --- vim options -vim.opt.wrap = true - -- keymappings [view all the defaults by pressing Lk] lvim.leader = "space" lvim.keys.normal_mode[""] = ":w" - -- After changing plugin config exit and reopen LunarVim, Run :PackerInstall :PackerCompile lvim.builtin.alpha.active = true +lvim.builtin.alpha.mode = "dashboard" lvim.builtin.notify.active = true lvim.builtin.terminal.active = true lvim.builtin.nvimtree.setup.view.side = "left" -lvim.builtin.nvimtree.show_icons.git = 0 +lvim.builtin.nvimtree.show_icons.git = 1 lvim.builtin.lualine.style = "lvim" -- if you don't want all the parsers change this to a table of the ones you want