From 84d039b0c8d92f6788d805225418c2e2fbc4435b Mon Sep 17 00:00:00 2001 From: siduck76 Date: Thu, 29 Apr 2021 19:36:22 +0530 Subject: [PATCH] webdevicons : add icon for vala filetype --- lua/file-icons/lua.lua | 5 +++++ lua/pluginsList/lua.lua | 1 + 2 files changed, 6 insertions(+) diff --git a/lua/file-icons/lua.lua b/lua/file-icons/lua.lua index 29307fa..5d3e80b 100644 --- a/lua/file-icons/lua.lua +++ b/lua/file-icons/lua.lua @@ -106,6 +106,11 @@ require "nvim-web-devicons".setup { icon = "", color = "#fca2aa", name = "rpm" + }, + vala = { + icon = "", + color = "#ccaced", + name = "vala" } } } diff --git a/lua/pluginsList/lua.lua b/lua/pluginsList/lua.lua index 4e97992..233c584 100644 --- a/lua/pluginsList/lua.lua +++ b/lua/pluginsList/lua.lua @@ -41,5 +41,6 @@ return require("packer").startup( use "907th/vim-auto-save" use "karb94/neoscroll.nvim" use "kdav5758/TrueZen.nvim" + end )