lunarvim init
This commit is contained in:
parent
4e372a5b82
commit
70b1001864
9 changed files with 934 additions and 0 deletions
28
.config/lvim/config.lua
Normal file
28
.config/lvim/config.lua
Normal 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", },
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue