@@ -11,13 +11,13 @@ local M = {}
1111
1212M .modules = {
1313 ui = {
14- " dashboard" , -- Start screen
14+ " dashboard" , -- Start screen
1515 -- "doom-themes", -- Additional doom emacs' colorschemes
1616 -- "indentlines", -- Show indent lines
1717 -- "show_registers", -- popup that shows register contents
18- " statusline" , -- Statusline
19- " tabline" , -- Tabline, shows your buffers list at top
20- " which-key" , -- Keybindings popup menu like Emacs' guide-key
18+ " statusline" , -- Statusline
19+ " tabline" , -- Tabline, shows your buffers list at top
20+ " which-key" , -- Keybindings popup menu like Emacs' guide-key
2121 -- "zen", -- Distraction free environment
2222 },
2323 doom = {
@@ -26,20 +26,20 @@ M.modules = {
2626 -- "runner", -- Open a REPL for the current language or run the current file
2727 },
2828 editor = {
29- " autopairs" , -- Autopairs
30- " auto-session" , -- A small automated session manager for Neovim
31- " dap" , -- Debug Adapter Protocol
29+ " autopairs" , -- Autopairs
30+ " auto-session" , -- A small automated session manager for Neovim
31+ " dap" , -- Debug Adapter Protocol
3232 -- "editorconfig", -- EditorConfig support for Neovim
33- " explorer" , -- Tree explorer
34- " formatter" , -- File formatting
35- " gitsigns" , -- Git signs
36- " kommentary" , -- Comments plugin
37- " lsp" , -- Language Server Protocols
33+ " explorer" , -- Tree explorer
34+ " formatter" , -- File formatting
35+ " gitsigns" , -- Git signs
36+ " kommentary" , -- Comments plugin
37+ " lsp" , -- Language Server Protocols
3838 -- "minimap", -- Code minimap, requires github.com/wfxr/code-minimap
3939 -- "ranger", -- Ranger File Browser, requires ranger file browser
40- " snippets" , -- LSP snippets
41- " symbols" , -- LSP symbols and tags
42- " telescope" , -- Highly extendable fuzzy finder over lists
40+ " snippets" , -- LSP snippets
41+ " symbols" , -- LSP symbols and tags
42+ " telescope" , -- Highly extendable fuzzy finder over lists
4343 -- "terminal", -- Terminal for Neovim (NOTE: needed for runner and compiler)
4444 },
4545 langs = {
@@ -54,7 +54,7 @@ M.modules = {
5454
5555 -- "bash", -- The terminal gods language
5656 -- "elixir", -- Build scalable and maintainable software
57- " lua" , -- Support for our gods language
57+ " lua" , -- Support for our gods language
5858 -- "python +lsp", -- Python support + lsp
5959 -- "ruby", -- Look ma, I love the gems!
6060
@@ -70,14 +70,14 @@ M.modules = {
7070 utilities = {
7171 -- "lazygit", -- LazyGit integration for Neovim, requires LazyGit
7272 -- "neogit", -- Magit for Neovim
73- " range-highlight" , -- hightlights ranges you have entered in commandline
73+ " range-highlight" , -- hightlights ranges you have entered in commandline
7474 -- "suda", -- Write and read files without sudo permissions
7575 },
7676 web = {
7777 -- "colorizer", -- Fastest colorizer for Neovim
7878 -- "firenvim", -- requires firenvim browser extension; change fontsize by increasing guifontsize in doom_config
7979 -- "restclient", -- A fast Neovim http client
80- }
80+ },
8181}
8282
8383M .source = nil
@@ -93,7 +93,7 @@ if ok then
9393 M .modules = ret .modules
9494 M .source = ret .source
9595else
96- ok , ret = pcall (dofile , system .doom_configs_root .. " /doom_modules.lua" )
96+ ok , ret = pcall (dofile , system .doom_configs_root .. " /doom_modules.lua" )
9797 if ok then
9898 M .modules = ret .modules
9999 M .source = ret .source
0 commit comments