refactor(nvim): move plugin config to the
... `after/plugin` directory
This commit is contained in:
parent
8cf3fed368
commit
7d3b82884c
13 changed files with 4 additions and 14 deletions
13
roles/neovim/files/after/plugin/colours.lua
Normal file
13
roles/neovim/files/after/plugin/colours.lua
Normal file
|
@ -0,0 +1,13 @@
|
|||
local colorbuddy_status_ok, colorbuddy = pcall(require, "colorbuddy")
|
||||
if not colorbuddy_status_ok then
|
||||
return
|
||||
end
|
||||
|
||||
local colorizer_status_ok, colorizer = pcall(require, "colorizer")
|
||||
if not colorizer_status_ok then
|
||||
return
|
||||
end
|
||||
|
||||
colorbuddy.colorscheme "gruvbuddy"
|
||||
|
||||
colorizer.setup()
|
Loading…
Add table
Add a link
Reference in a new issue