diff options
author | crupest <crupest@outlook.com> | 2023-12-11 15:02:08 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2024-03-19 21:42:50 +0800 |
commit | a7945dc177ed1f08154706519e87ef00a013860e (patch) | |
tree | 4ae5a69de5fd6898d8d315aaebd4cfc0e10ac7b0 | |
parent | e2854bf94558863109d75db28849546e6c68dd88 (diff) | |
download | crupest-a7945dc177ed1f08154706519e87ef00a013860e.tar.gz crupest-a7945dc177ed1f08154706519e87ef00a013860e.tar.bz2 crupest-a7945dc177ed1f08154706519e87ef00a013860e.zip |
config(nvim): enable doxygen.
-rw-r--r-- | configs/nvim/init.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configs/nvim/init.lua b/configs/nvim/init.lua index c3016b5..9461a05 100644 --- a/configs/nvim/init.lua +++ b/configs/nvim/init.lua @@ -5,7 +5,7 @@ end if vim.g.neovide then -- spellchecker: disable-next-line vim.opt.guifont = "FiraCode Nerd Font"; - vim.g.neovide_transparency = 0.98; + vim.g.neovide_transparency = 0.95; vim.g.neovide_input_ime = false; vim.g.neovide_cursor_vfx_mode = "ripple"; end @@ -43,6 +43,9 @@ if is_win then vim.opt.completeslash = 'slash' end +vim.g.load_doxygen_syntax = true; +vim.g.doxygen_javadoc_autobrief = false; + -- Init lazy.nvim local lazy_path = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not vim.uv.fs_stat(lazy_path) then |