1
0
Fork 0

nvim: remove neogit; kitty: use cascadia mono instead of cascadia code

This commit is contained in:
Von Random 2023-03-13 19:29:22 +02:00
parent c34dd32584
commit de67bceff3
2 changed files with 13 additions and 21 deletions

View file

@ -13,10 +13,6 @@ local function plugins(use)
'nvim-telescope/telescope.nvim',
requires = 'nvim-lua/plenary.nvim'
}
use {
'TimUntersberger/neogit',
requires = 'nvim-lua/plenary.nvim'
}
use {
'w0rp/ale',
ft = { 'sh', 'zsh', 'lua', 'python' },
@ -28,7 +24,6 @@ end
if require('packer_init').init(plugins) then return end
--[[ plugins config ]]
require('neogit').setup{}
require('lualine').setup{
options = {
icons_enabled = false,
@ -36,9 +31,6 @@ require('lualine').setup{
}
}
--[[ neogit maps ]]
map('n', '<Leader>g', '<cmd>Neogit<CR>')
--[[ telescope maps ]]
map('n', '<Leader>.', '<cmd>Telescope git_files<CR>')
map('n', '<Leader>,', '<cmd>Telescope buffers<CR>')