Skip to content

Commit 05fb616

Browse files
committed
fixed bad merge
1 parent 824a367 commit 05fb616

File tree

1 file changed

+24
-31
lines changed

1 file changed

+24
-31
lines changed

init.lua

Lines changed: 24 additions & 31 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
94-
vim.g.have_nerd_font = false
94+
vim.g.have_nerd_font = true
9595

9696
-- [[ Setting options ]]
9797
-- See `:help vim.opt`
@@ -237,7 +237,7 @@ vim.opt.rtp:prepend(lazypath)
237237
-- :Lazy update
238238
--
239239
-- NOTE: Here is where you install your plugins.
240-
require('lazy').setup({
240+
require('lazy').setup {
241241
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
242242
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
243243

@@ -331,15 +331,12 @@ require('lazy').setup({
331331
},
332332
{ 'nvim-telescope/telescope-ui-select.nvim' },
333333

334-
<<<<<<< HEAD
335334
-- Useful for getting pretty icons, but requires special font.
336335
-- If you already have a Nerd Font, or terminal set up with fallback fonts
337336
-- you can enable this
338337
{ 'nvim-tree/nvim-web-devicons' },
339-
=======
340338
-- Useful for getting pretty icons, but requires a Nerd Font.
341339
{ 'nvim-tree/nvim-web-devicons', enabled = vim.g.have_nerd_font },
342-
>>>>>>> upstream/master
343340
},
344341
config = function()
345342
-- Telescope is a fuzzy finder that comes with a lot of different things that
@@ -840,35 +837,31 @@ require('lazy').setup({
840837
-- This is the easiest way to modularize your config.
841838
--
842839
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
843-
<<<<<<< HEAD
844840
-- For additional information see: :help lazy.nvim-lazy.nvim-structuring-your-plugins
845841
{ import = 'custom.plugins' },
842+
-- Doesnt need to work
843+
-- {
844+
-- ui = {
845+
-- -- If you have a Nerd Font, set icons to an empty table which will use the
846+
-- -- default lazy.nvim defined Nerd Font icons otherwise define a unicode icons table
847+
-- icons = vim.g.have_nerd_font and {} or {
848+
-- cmd = '⌘',
849+
-- config = '🛠',
850+
-- event = '📅',
851+
-- ft = '📂',
852+
-- init = '⚙',
853+
-- keys = '🗝',
854+
-- plugin = '🔌',
855+
-- runtime = '💻',
856+
-- require = '🌙',
857+
-- source = '📄',
858+
-- start = '🚀',
859+
-- task = '📌',
860+
-- lazy = '💤 ',
861+
-- },
862+
-- },
863+
-- },
846864
}
847-
=======
848-
-- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins`
849-
-- { import = 'custom.plugins' },
850-
}, {
851-
ui = {
852-
-- If you have a Nerd Font, set icons to an empty table which will use the
853-
-- default lazy.nvim defined Nerd Font icons otherwise define a unicode icons table
854-
icons = vim.g.have_nerd_font and {} or {
855-
cmd = '',
856-
config = '🛠',
857-
event = '📅',
858-
ft = '📂',
859-
init = '',
860-
keys = '🗝',
861-
plugin = '🔌',
862-
runtime = '💻',
863-
require = '🌙',
864-
source = '📄',
865-
start = '🚀',
866-
task = '📌',
867-
lazy = '💤 ',
868-
},
869-
},
870-
})
871-
>>>>>>> upstream/master
872865

873866
-- The line beneath this is called `modeline`. See `:help modeline`
874867
-- vim: ts=2 sts=2 sw=2 et

0 commit comments

Comments
 (0)