lunarvim init

This commit is contained in:
Daniel Yrovas 2022-03-23 21:07:38 +11:00
parent 4e372a5b82
commit 70b1001864
Signed by: danielyrovas
GPG key ID: C181BAC70BDE7C00
9 changed files with 934 additions and 0 deletions

28
.config/lvim/config.lua Normal file
View file

@ -0,0 +1,28 @@
-- Options
lvim.colorscheme = "tokyonight"
lvim.log.level = "warn"
lvim.format_on_save = true
lvim.builtin.nvimtree.show_icons.git = 1
local o = vim.opt
o.timeoutlen = 300
o.shell = "/bin/sh"
-- Keymappings
local delete = function () end
lvim.leader = "space"
lvim.keys.normal_mode["<C-s>"] = ":w<cr>"
lvim.builtin.cmp.mapping["<C-Space>"] = delete()
require 'conf.luasnip'
-- Plugins
lvim.builtin.notify.active = true
lvim.builtin.terminal.active = true
lvim.builtin.dap.active = true
lvim.plugins = {
{ "folke/tokyonight.nvim" },
{ "folke/trouble.nvim", cmd = "TroubleToggle", },
}