Skip to content

Commit 0c286fb

Browse files
authored
feat(nvim): Add theme Onedark (Atom) (#82)
1 parent 2f7dbda commit 0c286fb

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

nvim/lua/plugins/onedark-theme.lua

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
return {
2+
"navarasu/onedark.nvim",
3+
priority = 1000, -- make sure to load this before all the other start plugins
4+
config = function()
5+
require("onedark").setup({
6+
style = "darker",
7+
})
8+
-- Enable theme
9+
require("onedark").load()
10+
end,
11+
}

0 commit comments

Comments
 (0)