This repository was archived by the owner on Nov 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstarplug.example.lua
42 lines (41 loc) · 1.52 KB
/
starplug.example.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
local star = {
ui = {
"dashboard", -- Start screen
"statusline", -- Statusline
"tabline", -- Tabline, shows your buffers list at top
"which-key", -- Keybindings popup menu like Emacs' guide-key
-- 'zen', -- Distraction free environment
-- 'indentlines', -- Show indent lines
},
star = {
-- 'orgmode', -- Life Organization Tool
-- 'runner', -- Code runner for your language
},
colors = {
"stardark", -- The shiny theme
-- "gruvbox", -- The almighty
-- "icy", -- Shiver to death!
-- "neon", -- Welcome to the light
},
editor = {
"lsp", -- Language Server Protocols
"lint", -- A beauty teacher for your language
"completion", -- The ultimate completion
"nvim-tree", -- Tree explorer
"symbols", -- LSP symbols and tags
"gitsigns", -- Git signs
"telescope", -- Highly extendable fuzzy finder over lists
"formatter", -- File formatting
"autopairs", -- Autopairs
"commentary", -- Commentary plugin
-- "terminal", -- Terminal for Neovim (NOTE: needed for runner and compiler)
-- 'minimap', -- Code minimap, requires github.com/wfxr/code-minimap
},
utilities = {
"colorizer", -- Fastets colorizer for Neovim
-- 'lazygit', -- LazyGit integration for Neovim, requires LazyGit
-- 'suda', -- Write and read files without sudo permissions
-- 'range-highlight', -- hightlights ranges you have entered in commandline
},
}
return star