Skip to content

Commit 09c72a8

Browse files
committed
🎉 Initial Commit
0 parents  commit 09c72a8

File tree

5 files changed

+500
-0
lines changed

5 files changed

+500
-0
lines changed

.gitignore

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Compiled Lua sources
2+
luac.out
3+
4+
# luarocks build files
5+
*.src.rock
6+
*.zip
7+
*.tar.gz
8+
9+
# Object files
10+
*.o
11+
*.os
12+
*.ko
13+
*.obj
14+
*.elf
15+
16+
# Precompiled Headers
17+
*.gch
18+
*.pch
19+
20+
# Libraries
21+
*.lib
22+
*.a
23+
*.la
24+
*.lo
25+
*.def
26+
*.exp
27+
28+
# Shared objects (inc. Windows DLLs)
29+
*.dll
30+
*.so
31+
*.so.*
32+
*.dylib
33+
34+
# Executables
35+
*.exe
36+
*.out
37+
*.app
38+
*.i*86
39+
*.x86_64
40+
*.hex
41+
42+
# LunarVim
43+
plugin/

.luacheckrc

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
-- vim: ft=lua tw=80
2+
3+
stds.nvim = {
4+
globals = {
5+
"O",
6+
vim = { fields = { "g" } },
7+
"CONFIG_PATH",
8+
"CACHE_PATH",
9+
"DATA_PATH",
10+
"TERMINAL",
11+
"USER",
12+
"C",
13+
"Config",
14+
"WORKSPACE_PATH",
15+
"JAVA_LS_EXECUTABLE",
16+
"MUtils",
17+
os = {fields = {"capture"}}
18+
},
19+
read_globals = {
20+
"jit",
21+
"os",
22+
"vim",
23+
-- vim = { fields = { "cmd", "api", "fn", "o" } },
24+
},
25+
}
26+
std = "lua51+nvim"
27+
28+
29+
-- Don't report unused self arguments of methods.
30+
self = false
31+
32+
-- Rerun tests only if their modification time changed.
33+
cache = true
34+
35+
ignore = {
36+
"631", -- max_line_length
37+
"212/_.*", -- unused argument, for vars with "_" prefix
38+
}

.stylua.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
column_width = 120
2+
line_endings = "Unix"
3+
indent_type = "Spaces"
4+
indent_width = 2
5+
quote_style = "AutoPreferDouble"
6+
no_call_parentheses = true

README.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Bloated LunarVim
2+
3+
## What is included
4+
5+
- [Tokyonight Theme](https://github.com/folke/tokyonight.nvim/)
6+
- [Doom One Theme](https://github.com/NTBBloodbath/doom-one.nvim)
7+
- [LSP Signature](https://github.com/ray-x/lsp_signature.nvim/)
8+
- [nvim-lastplace](https://github.com/ethanholz/nvim-lastplace)
9+
- [Todo Comments](https://github.com/folke/todo-comments.nvim)
10+
- [Trouble](https://github.com/folke/trouble.nvim)
11+
- [symbols-outline.nvim](https://github.com/simrat39/symbols-outline.nvim)
12+
- [Diffview.nvim](https://github.com/sindrets/diffview.nvim)
13+
- [telescope-project.nvim](https://github.com/sindrets/diffview.nvim)
14+
- [Indent Blankline](https://github.com/lukas-reineke/indent-blankline.nvim)
15+
- [Tabnine](https://github.com/tzachar/compe-tabnine)
16+
- [Twilight](https://github.com/folke/twilight.nvim)
17+
- [nvim-bqf](https://github.com/kevinhwang91/nvim-bqf)
18+
- [vim match-up](https://github.com/andymass/vim-matchup)
19+
- [Markdown Preview for (Neo)vim](https://github.com/iamcco/markdown-preview.nvim)
20+
- [vim-ultest](https://github.com/rcarriga/vim-ultest)
21+
- [nvim-dap-ui](https://github.com/rcarriga/nvim-dap-ui)
22+
- [lightspeed.nvim](https://github.com/ggandor/lightspeed.nvim)
23+
24+
25+
## How to use
26+
27+
```bash
28+
# install LunarVim
29+
# curl -s https://raw.githubusercontent.com/ChristianChiarulli/lunarvim/rolling/utils/installer/install.sh | LVBRANCH=rolling bash -s -- --overwrite
30+
mv ~/.config/lvim ~/.config/lvim_backup
31+
git clone https://github.com/abzcoding/lvim.git ~/.config/lvim
32+
lvim # run :PackerSync
33+
```
34+
35+
## Known Issues
36+
37+
- it is extremely bloated! Do not use on a potato PC!!
38+
- sometimes `compe-tabnine` doesn't play nice, you can disable it :)

0 commit comments

Comments
 (0)