[MINOR] nvim removed hardtime and fixed Mason icons
This commit is contained in:
parent
1b4603b394
commit
eebb660b71
3 changed files with 16 additions and 9 deletions
14
.config/nvim/lua/plugins/copilot.lua
Normal file
14
.config/nvim/lua/plugins/copilot.lua
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
require("copilot").setup({
|
||||||
|
suggestion = {enabled = false},
|
||||||
|
panel = {enabled = false},
|
||||||
|
filetypes = {
|
||||||
|
yaml = false,
|
||||||
|
help = false,
|
||||||
|
gitcommit = false,
|
||||||
|
gitrebase = false,
|
||||||
|
hgcommit = false,
|
||||||
|
svn = false,
|
||||||
|
cvs = false,
|
||||||
|
["."] = true
|
||||||
|
}
|
||||||
|
})
|
|
@ -36,13 +36,6 @@ lazy.setup({
|
||||||
'tpope/vim-surround',
|
'tpope/vim-surround',
|
||||||
'tpope/vim-obsession',
|
'tpope/vim-obsession',
|
||||||
|
|
||||||
{
|
|
||||||
'm4xshen/hardtime.nvim',
|
|
||||||
config = function()
|
|
||||||
require 'hardtime'.setup {}
|
|
||||||
end
|
|
||||||
},
|
|
||||||
|
|
||||||
--Tmux navigation
|
--Tmux navigation
|
||||||
{
|
{
|
||||||
'alexghergh/nvim-tmux-navigation',
|
'alexghergh/nvim-tmux-navigation',
|
||||||
|
|
|
@ -8,8 +8,8 @@ local options = {
|
||||||
ui = {
|
ui = {
|
||||||
icons = {
|
icons = {
|
||||||
package_pending = " ",
|
package_pending = " ",
|
||||||
package_installed = " ",
|
package_installed = " ",
|
||||||
package_uninstalled = " ﮊ",
|
package_uninstalled = " ",
|
||||||
},
|
},
|
||||||
|
|
||||||
keymaps = {
|
keymaps = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue