mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-07-07 16:04:27 +02:00
add: config for database management
This commit is contained in:
parent
17f2ffe48b
commit
9dbcd4b755
9 changed files with 218 additions and 82 deletions
|
@ -6,7 +6,7 @@ elseif substring(tostring(colorscheme), "material") then
|
|||
colorscheme = "material"
|
||||
end
|
||||
|
||||
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
|
||||
if not status_ok then
|
||||
return
|
||||
local ok, _ = pcall(vim.cmd.colorscheme, colorscheme)
|
||||
if not ok then
|
||||
require "notify"("Colorscheme '" .. colorscheme .. "' not found!", "error")
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue