Fix devicons
This commit is contained in:
parent
84c7f848e8
commit
b3474cd289
2 changed files with 6 additions and 3 deletions
|
@ -22,6 +22,11 @@ return packer.startup(function()
|
|||
disable = vim.tbl_contains(user_config.disable_builtin_plugins, 'notify'),
|
||||
})
|
||||
|
||||
use({
|
||||
'kyazdani42/nvim-web-devicons',
|
||||
after = user_config.theme,
|
||||
})
|
||||
|
||||
-- theme stuff
|
||||
use({ -- statusline
|
||||
'NTBBloodbath/galaxyline.nvim',
|
||||
|
|
|
@ -18,9 +18,7 @@ if config.lsp.format_on_save then
|
|||
timeout_ms = config.lsp.format_timeout,
|
||||
-- check user config to see if we can format on save
|
||||
filter = function(client)
|
||||
if config.lsp.can_client_format(client.name) then
|
||||
return client.name
|
||||
end
|
||||
return config.lsp.can_client_format(client.name)
|
||||
end,
|
||||
})
|
||||
end,
|
||||
|
|
Loading…
Add table
Reference in a new issue