diff --git a/doc/dracula.txt b/doc/dracula.txt index e15a281..5f1c787 100644 --- a/doc/dracula.txt +++ b/doc/dracula.txt @@ -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