We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51cf72d commit 6da6c82Copy full SHA for 6da6c82
private_dot_config/nvim/lua/plugins-d/_onedark-vim.lua
@@ -1,13 +1,8 @@
1
local config = function()
2
- vim.env.NVIM_TUI_ENABLE_TRUE_COLOR=1
3
- vim.api.nvim_set_option('termguicolors',true)
4
- -- FIXME
5
- vim.cmd([[
6
- syntax on
7
- colorscheme onedark
8
- ]])
+ require('onedark').load()
9
end
10
return {
11
- 'joshdick/onedark.vim',
+ 'navarasu/onedark.nvim',
12
config = config,
+ after = 'nvim-treesitter',
13
}
0 commit comments