mirror of
https://github.com/maxmx03/dracula.nvim.git
synced 2026-09-10 07:26:19 -04:00
chore(doc): auto generate docs
This commit is contained in:
parent
7bdaaffec9
commit
8ea32b764e
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue