mirror of
https://github.com/ksyasuda/rice.git
synced 2024-10-28 09:04:10 -07:00
28 lines
875 B
Lua
28 lines
875 B
Lua
|
require('doom-one').setup({
|
||
|
cursor_coloring = false,
|
||
|
terminal_colors = false,
|
||
|
italic_comments = false,
|
||
|
enable_treesitter = true,
|
||
|
transparent_background = false,
|
||
|
pumblend = {
|
||
|
enable = true,
|
||
|
transparency_amount = 20,
|
||
|
},
|
||
|
plugins_integrations = {
|
||
|
neorg = true,
|
||
|
barbar = true,
|
||
|
bufferline = false,
|
||
|
gitgutter = false,
|
||
|
gitsigns = true,
|
||
|
telescope = false,
|
||
|
neogit = true,
|
||
|
nvim_tree = true,
|
||
|
dashboard = true,
|
||
|
startify = true,
|
||
|
whichkey = true,
|
||
|
indent_blankline = true,
|
||
|
vim_illuminate = true,
|
||
|
lspsaga = false,
|
||
|
},
|
||
|
})
|