mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
chore(vim): add nvim-web-devicons and configuration
This commit is contained in:
@@ -7,3 +7,4 @@ source ~/.config/nvim/plugins/bookmarks.vim
|
||||
source ~/.config/nvim/plugins/bufferline.lua
|
||||
source ~/.config/nvim/plugins/colorizer.lua
|
||||
source ~/.config/nvim/plugins/dashboard.vim
|
||||
source ~/.config/nvim/plugins/web-devicons.lua
|
||||
|
||||
@@ -18,6 +18,7 @@ Plug 'chriskempson/base16-vim'
|
||||
|
||||
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
||||
Plug 'akinsho/bufferline.nvim'
|
||||
Plug 'kyazdani42/nvim-web-devicons'
|
||||
|
||||
" Tpope
|
||||
Plug 'tpope/vim-abolish'
|
||||
|
||||
10
nvim/plugins/web-devicons.lua
Normal file
10
nvim/plugins/web-devicons.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
-- nvim-web-devicons
|
||||
-- https://github.com/kyazdani42/nvim-web-devicons
|
||||
|
||||
local status, web_devicons = pcall(require, 'nvim-web-devicons')
|
||||
if (not status) then return end
|
||||
|
||||
web_devicons.setup({
|
||||
override = {},
|
||||
default = true,
|
||||
})
|
||||
Reference in New Issue
Block a user