Skip to content

Commit

Permalink
Fix Nerd Font glyph issues in NeoVim
Browse files Browse the repository at this point in the history
- Upgrade bufferline to fix Nerd Font issue
- Fix 'Recent Files' Nerd Font glyph
- Fix broken nerd fonts for completion menu

refs ryanoasis/nerd-fonts#1190
  • Loading branch information
andrewsardone committed Nov 12, 2023
1 parent b9dc76d commit ce222da
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .config/nvim/lua/user/alpha.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dashboard.section.buttons.val = {
dashboard.button("f", "" .. " Find file", ":Telescope find_files <CR>"),
dashboard.button("e", "" .. " New file", ":ene <BAR> startinsert <CR>"),
dashboard.button("p", "" .. " Find project", ":lua require('telescope').extensions.projects.projects()<CR>"),
dashboard.button("r", " " .. " Recent files", ":Telescope oldfiles <CR>"),
dashboard.button("r", " " .. " Recent files", ":Telescope oldfiles <CR>"),
dashboard.button("t", "" .. " Find text", ":Telescope live_grep <CR>"),
dashboard.button("c", "" .. " Config", ":e $MYVIMRC <CR>"),
dashboard.button("q", "" .. " Quit", ":qa<CR>"),
Expand Down
50 changes: 25 additions & 25 deletions .config/nvim/lua/user/cmp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,31 @@ local check_backspace = function()
end

local kind_icons = {
Text = "",
Method = "",
Function = "",
Constructor = "",
Field = "",
Variable = "",
Class = "",
Interface = "",
Module = "",
Property = "",
Unit = "",
Value = "",
Enum = "",
Keyword = "",
Snippet = "",
Color = "",
File = "",
Reference = "",
Folder = "",
EnumMember = "",
Constant = "",
Struct = "",
Event = "",
Operator = "",
TypeParameter = "",
Text = "",
Method = "󰆧",
Function = "󰊕",
Constructor = "",
Field = "󰇽",
Variable = "󰂡",
Class = "󰠱",
Interface = "",
Module = "",
Property = "󰜢",
Unit = "",
Value = "󰎠",
Enum = "",
Keyword = "󰌋",
Snippet = "",
Color = "󰏘",
File = "󰈙",
Reference = "",
Folder = "󰉋",
EnumMember = "",
Constant = "󰏿",
Struct = "",
Event = "",
Operator = "󰆕",
TypeParameter = "󰅲",
}

cmp.setup({
Expand Down
2 changes: 1 addition & 1 deletion .config/nvim/lua/user/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ return packer.startup(function(use)
use { "JoosepAlviste/nvim-ts-context-commentstring", commit = "32d9627123321db65a4f158b72b757bcaef1a3f4" }
use { "kyazdani42/nvim-web-devicons", commit = "563f3635c2d8a7be7933b9e547f7c178ba0d4352" }
use { "kyazdani42/nvim-tree.lua", commit = "7282f7de8aedf861fe0162a559fc2b214383c51c" }
use { "akinsho/bufferline.nvim", commit = "83bf4dc7bff642e145c8b4547aa596803a8b4dc4" }
use { "akinsho/bufferline.nvim", commit = "357cc8f8eeb64702e6fcf2995e3b9becee99a5d3" }
use { "moll/vim-bbye", commit = "25ef93ac5a87526111f43e5110675032dbcacf56" }
use { "nvim-lualine/lualine.nvim", commit = "a52f078026b27694d2290e34efa61a6e4a690621" }
use { "akinsho/toggleterm.nvim", commit = "2a787c426ef00cb3488c11b14f5dcf892bbd0bda" }
Expand Down

0 comments on commit ce222da

Please sign in to comment.