From add71132c26b16e39f96796d0dea0d68f94d5a59 Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Wed, 31 May 2023 21:01:17 +0200 Subject: [PATCH] Cleanup --- config/nvim/lua/user/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/nvim/lua/user/options.lua b/config/nvim/lua/user/options.lua index 3520198..2eca50b 100644 --- a/config/nvim/lua/user/options.lua +++ b/config/nvim/lua/user/options.lua @@ -17,7 +17,7 @@ return { diagnostics_mode = 3, -- set the visibility of diagnostics in the UI (0=off, 1=only show in status line, 2=virtual text off, 3=all on) icons_enabled = true, -- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing) ui_notifications_enabled = true, -- disable notifications when toggling UI elements - copilot_filetypes = {markdown = true}, + copilot_filetypes = {markdown = true}, -- enable copilot for markdown files }, } -- If you need more control, you can use the function()...end notation