Skip to content

Commit be44ba5

Browse files
author
Jack Walton Jarosz
committed
Update
1 parent 1860184 commit be44ba5

File tree

3 files changed

+34
-6
lines changed

3 files changed

+34
-6
lines changed

init.lua

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
9191
vim.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

lua/custom/plugins/activate.lua

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
return {
2+
'roobert/activate.nvim',
3+
keys = {
4+
{
5+
'<leader>P',
6+
'<CMD>lua require("activate").list_plugins()<CR>',
7+
desc = 'Plugins',
8+
},
9+
},
10+
dependencies = {
11+
{ 'nvim-telescope/telescope.nvim', branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' } },
12+
},
13+
}

lua/plugins/transparent_nvim.lua

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
-- No example configuration was found for this plugin.
2+
--
3+
-- For detailed information on configuring this plugin, please refer to its
4+
-- official documentation:
5+
--
6+
-- https://github.com/xiyaowong/transparent.nvim
7+
--
8+
-- If you wish to use this plugin, you can optionally modify and then uncomment
9+
-- the configuration below.
10+
11+
return {
12+
-- 'xiyaowong/transparent.nvim',
13+
}

0 commit comments

Comments
 (0)