nvim: treesitter; kitty: editor and colors
This commit is contained in:
parent
a9bb2b20a0
commit
e4c3ca167e
2 changed files with 15 additions and 17 deletions
|
@ -12,28 +12,24 @@ vim.opt.rtp:prepend(lazypath)
|
|||
--[[ plugins list ]]
|
||||
require('lazy').setup {
|
||||
{'lifepillar/vim-solarized8', branch = 'neovim'},
|
||||
'lewis6991/gitsigns.nvim',
|
||||
'lifepillar/vim-cheat40',
|
||||
{'nvim-telescope/telescope.nvim', dependencies = {'nvim-lua/plenary.nvim'}},
|
||||
{'nvim-treesitter/nvim-treesitter', cmd = 'TSUpdate'},
|
||||
{'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'sh', 'zsh', 'lua', 'python'}},
|
||||
'hashivim/vim-terraform',
|
||||
'khaveesh/vim-fish-syntax',
|
||||
'lewis6991/gitsigns.nvim',
|
||||
'lifepillar/vim-cheat40',
|
||||
'tpope/vim-rsi',
|
||||
'tpope/vim-vinegar',
|
||||
'nvim-lualine/lualine.nvim',
|
||||
{
|
||||
'nvim-telescope/telescope.nvim',
|
||||
dependencies = {'nvim-lua/plenary.nvim'}
|
||||
},
|
||||
{
|
||||
'w0rp/ale',
|
||||
cmd = 'ALEEnable',
|
||||
ft = {'bash', 'sh', 'zsh', 'lua', 'python'}
|
||||
}
|
||||
}
|
||||
|
||||
--[[ plugin configs and maps ]]
|
||||
require('gitsigns').setup()
|
||||
require('lualine').setup {options = {theme = 'solarized'}}
|
||||
require('nvim-treesitter.configs').setup {
|
||||
highlight = {
|
||||
enable = true
|
||||
}
|
||||
}
|
||||
map('n', '<Leader>L', '<cmd>Lazy<CR>')
|
||||
map('n', '<Leader>?', '<cmd>Cheat40<CR>')
|
||||
map('n', '<Leader>.', '<cmd>Telescope git_files<CR>')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue