forgot to turn nerd fonts on! Thank god for meld

This commit is contained in:
Joost Agterhoek 2024-08-22 10:28:22 +02:00
parent b382585803
commit e603176927
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,13 @@
-- TESTING REGION
-- from https://github.com/nvim-tree/nvim-tree.lua?tab=readme-ov-file#setup
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
vim.opt.termguicolors = true
-- To make sure image.nvim works with luarocks
package.path = package.path .. ';' .. vim.fn.expand '$HOME' .. '/.luarocks/share/lua/5.1/?/init.lua;'
package.path = package.path .. ';' .. vim.fn.expand '$HOME' .. '/.luarocks/share/lua/5.1/?.lua'
-- END OF TESTING REGION
--[[
=====================================================================
@ -91,7 +101,7 @@ vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
-- Set to true if you have a Nerd Font installed and selected in the terminal
vim.g.have_nerd_font = false
vim.g.have_nerd_font = true
-- [[ Setting options ]]
-- See `:help vim.opt`

View File

@ -1,5 +1,8 @@
return {
'romgrk/barbar.nvim',
dependencies = {
'nvim-tree/nvim-web-devicons',
},
config = function()
require('barbar').setup()
vim.keymap.set('n', '<Tab>', ':BufferNext<CR>', { silent = true })