forked from doom-neovim/doom-nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoom_modules.lua
More file actions
101 lines (93 loc) · 4.58 KB
/
Copy pathdoom_modules.lua
File metadata and controls
101 lines (93 loc) · 4.58 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
-- doom_modules - Doom nvim module selection
--
-- The doom_modules controls what Doom nvim plugins modules are enabled and
-- what features are being used.
--
-- Comment out a plugin to enable it and comment a non-commented one to
-- disable and uninstall it.
--
-- NOTE: you can open the Doom nvim documentation by pressing `SPC d h`. You
-- will find a table of content where you will see a "Doomrc" section under the
-- "Configuration" one. In that section you will find a comprehensive list of
-- the available modules and all their supported flags.
local M = {}
M.source = debug.getinfo(1, "S").source:sub(2)
M.modules = {
ui = {
"dashboard", -- Start screen
-- "doom-themes", -- Additional doom emacs' colorschemes
-- "indentlines", -- Show indent lines
-- "show_registers", -- popup that shows register contents
"statusline", -- Statusline
"tabline", -- Tabline, shows your buffers list at top
"which-key", -- Keybindings popup menu like Emacs' guide-key
-- "zen", -- Distraction free environment
-- "illuminated", -- Highlight other uses of the word under the cursor like VSC
},
doom = {
-- "compiler", -- Compile (and run) your code with just pressing three keys!
-- "contrib", -- Special plugins intended for Doom Nvim contributors (lua docs, etc)
"neorg", -- Life Organization Tool, used by Doom Nvim user manual
-- "runner", -- Open a REPL for the current language or run the current file
},
editor = {
"autopairs", -- Autopairs
"auto-session", -- A small automated session manager for Neovim
"dap", -- Debug Adapter Protocol
-- "editorconfig", -- EditorConfig support for Neovim
"explorer", -- Tree explorer
"formatter", -- File formatting
"gitsigns", -- Git signs
"kommentary", -- Comments plugin
-- "linter", -- Asynchronous linter, see errors in your code on the fly
"lsp", -- Language Server Protocols
-- "minimap", -- Code minimap, requires github.com/wfxr/code-minimap
-- "ranger", -- Ranger File Browser, requires ranger file browser
"snippets", -- Code snippets
-- "symbols", -- LSP symbols and tags
"telescope", -- Highly extendable fuzzy finder over lists
-- "terminal", -- Terminal for Neovim (NOTE: needed for runner and compiler)
-- "trouble", -- A pretty list to help you solve all the trouble your code is causing.
},
langs = {
-- To enable the language server for a language just add the +lsp flag
-- at the end, e.g. 'rust +lsp'. This will install the rust TreeSitter
-- parser and rust-analyzer
--
-- "css", -- CSS support
-- "html", -- HTML support
-- "javascript", -- JavaScript support
-- "typescript", -- TypeScript support
-- "bash", -- The terminal gods language
-- "elixir", -- Build scalable and maintainable software
"lua", -- Support for our gods language
-- "python +lsp", -- Python support + lsp
-- "ruby", -- Look ma, I love the gems!
-- "c", -- Core dumped: segmentation fault
-- "cpp", -- C++ support
-- "go", -- Hello, gopher
-- "haskell", -- Because Functional programming is fun, isn't it?
-- "java", -- Java support
-- "rust +lsp", -- Let's get rusty!
-- "scala", -- Java, but good
-- "comment", -- Better annotations and comments
-- "config", -- Configuration files (JSON, YAML, TOML)
-- "dockerfile", -- Do you like containers, right?
-- "terraform", -- Terraform and HCL support
},
utilities = {
-- "lazygit", -- LazyGit integration for Neovim, requires LazyGit
-- "neogit", -- Magit for Neovim
"range-highlight", -- Hightlights ranges you have entered in commandline
-- "suda", -- Write and read files without sudo permissions
-- "superman", -- Read Unix man pages faster than a speeding bullet!
-- "todo_comments", -- Highlight, list and search todo comments in your projects
},
web = {
-- "colorizer", -- Fastest colorizer for Neovim
-- "firenvim", -- Requires firenvim browser extension; change fontsize by increasing guifontsize in doom_config
-- "restclient", -- A fast Neovim http client
},
}
return M
-- vim: sw=2 sts=2 ts=2 fdm=indent noexpandtab