@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
9191vim .g .maplocalleader = ' '
9292
9393-- Set to true if you have a Nerd Font installed and selected in the terminal
94- vim .g .have_nerd_font = false
94+ vim .g .have_nerd_font = true
9595
9696-- [[ Setting options ]]
9797-- See `:help vim.opt`
@@ -569,7 +569,7 @@ require('lazy').setup({
569569 -- - settings (table): Override the default settings passed when initializing the server.
570570 -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
571571 local servers = {
572- -- clangd = {},
572+ clangd = {},
573573 -- gopls = {},
574574 -- pyright = {},
575575 -- rust_analyzer = {},
@@ -657,6 +657,7 @@ require('lazy').setup({
657657 end ,
658658 formatters_by_ft = {
659659 lua = { ' stylua' },
660+ c = { ' clang_format' },
660661 -- Conform can also run multiple formatters sequentially
661662 -- python = { "isort", "black" },
662663 --
@@ -881,9 +882,9 @@ require('lazy').setup({
881882 -- Uncomment any of the lines below to enable them (you will need to restart nvim).
882883 --
883884 -- require 'kickstart.plugins.debug',
884- -- require 'kickstart.plugins.indent_line',
885- -- require 'kickstart.plugins.lint',
886- -- require 'kickstart.plugins.autopairs',
885+ require ' kickstart.plugins.indent_line' ,
886+ require ' kickstart.plugins.lint' ,
887+ require ' kickstart.plugins.autopairs' ,
887888 -- require 'kickstart.plugins.neo-tree',
888889 -- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
889890
@@ -892,7 +893,8 @@ require('lazy').setup({
892893 --
893894 -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
894895 -- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins`
895- -- { import = 'custom.plugins' },
896+ { import = ' custom.plugins' },
897+ { import = ' plugins' },
896898}, {
897899 ui = {
898900 -- If you are using a Nerd Font: set icons to an empty table which will use the
0 commit comments