From ae42921568ada7ce8138f17c4c0f315b9cc4c4b0 Mon Sep 17 00:00:00 2001 From: David Ponte Date: Mon, 12 May 2025 16:05:56 +0200 Subject: [PATCH] fix: enable Nerd Font support and adjust font variant settings --- after/ftplugin/c.lua | 8 -------- 1 file changed, 8 deletions(-) diff --git a/after/ftplugin/c.lua b/after/ftplugin/c.lua index d21fe8c6..d590452d 100644 --- a/after/ftplugin/c.lua +++ b/after/ftplugin/c.lua @@ -1,16 +1,8 @@ local set = vim.opt_local -<<<<<<< Updated upstream set.shiftwidth = 4 set.tabstop = 4 vim.g.sleuth_automatic = 0 -======= --- Use tabs instead of spaces -set.expandtab = false -- Use real tabs, not spaces -set.shiftwidth = 4 -- Size of an indent -set.tabstop = 4 -- Size of a tab -set.softtabstop = 0 -- Disable softtabstop ->>>>>>> Stashed changes set.commentstring = '/* %s */' -- Define a custom command ':IntMain' that inserts int main() {} template