chore(doc): auto generate docs

This commit is contained in:
github-actions[bot] 2024-08-03 01:08:33 +00:00
parent 7bdaaffec9
commit 8ea32b764e

View file

@ -1,4 +1,4 @@
*dracula.txt* For NVIM v0.9.4 Last change: 2024 July 10
*dracula.txt* For NVIM v0.9.4 Last change: 2024 August 03
==============================================================================
Table of Contents *dracula-table-of-contents*
@ -28,22 +28,14 @@ Annotations can be enabled. Below is an example of how to enable them.
lspconfig.lua_ls.setup {
settings = {
Lua = {
runtime = {
version = 'LuaJIT',
},
workspace = {
checkThirdParty = false,
checkThirdParty = true,
library = {
vim.env.VIMRUNTIME,
'~/.local/share/nvim/lazy/dracula',
'~/.local/share/nvim/lazy/dracula.nvim',
},
},
hint = {
enable = true,
},
completion = {
callSnippet = 'Replace',
},
-- other settings ...
},
},
capabilities = capabilities,
@ -61,6 +53,16 @@ Annotations can be enabled. Below is an example of how to enable them.
local dracula = require "dracula"
dracula.setup({
styles = {
types = {},
functions = {},
parameters = {},
comments = {},
strings = {},
keywords = {},
variables = {},
constants = {},
},
transparent = false,
on_colors = function (colors, color)
---@type dracula.palette