Skip to content

Commit d8769e1

Browse files
committed
feat: initial commit
0 parents  commit d8769e1

File tree

5 files changed

+63
-0
lines changed

5 files changed

+63
-0
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
tt.*
2+
.tests
3+
doc/tags
4+
debug
5+
.repro
6+
foo.*
7+
*.log
8+
data

.neoconf.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"neodev": {
3+
"library": {
4+
"enabled": true,
5+
"plugins": true
6+
}
7+
},
8+
"neoconf": {
9+
"plugins": {
10+
"sumneko_lua": {
11+
"enabled": true
12+
}
13+
}
14+
}
15+
}

init.lua

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require("config.lazy")

lua/config/lazy.lua

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
2+
if not vim.loop.fs_stat(lazypath) then
3+
vim.fn.system({
4+
"git",
5+
"clone",
6+
"--filter=blob:none",
7+
"https://github.com/folke/lazy.nvim.git",
8+
"--branch=stable",
9+
lazypath,
10+
})
11+
end
12+
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
13+
14+
require("lazy").setup({
15+
spec = {
16+
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
17+
{ import = "plugins" },
18+
},
19+
defaults = { lazy = true },
20+
install = { colorscheme = { "tokyonight", "habamax" } },
21+
checker = { enabled = true },
22+
performance = {
23+
rtp = {
24+
disabled_plugins = {
25+
"gzip",
26+
"matchit",
27+
"matchparen",
28+
"netrwPlugin",
29+
"tarPlugin",
30+
"tohtml",
31+
"tutor",
32+
"zipPlugin",
33+
},
34+
},
35+
},
36+
})

stylua.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
indent_type = "Spaces"
2+
indent_width = 2
3+
column_width = 120

0 commit comments

Comments
 (0)