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 ]]
|
--[[ plugins list ]]
|
||||||
require('lazy').setup {
|
require('lazy').setup {
|
||||||
{'lifepillar/vim-solarized8', branch = 'neovim'},
|
{'lifepillar/vim-solarized8', branch = 'neovim'},
|
||||||
'lewis6991/gitsigns.nvim',
|
{'nvim-telescope/telescope.nvim', dependencies = {'nvim-lua/plenary.nvim'}},
|
||||||
'lifepillar/vim-cheat40',
|
{'nvim-treesitter/nvim-treesitter', cmd = 'TSUpdate'},
|
||||||
|
{'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'sh', 'zsh', 'lua', 'python'}},
|
||||||
'hashivim/vim-terraform',
|
'hashivim/vim-terraform',
|
||||||
'khaveesh/vim-fish-syntax',
|
'khaveesh/vim-fish-syntax',
|
||||||
'lewis6991/gitsigns.nvim',
|
'lewis6991/gitsigns.nvim',
|
||||||
|
'lifepillar/vim-cheat40',
|
||||||
'tpope/vim-rsi',
|
'tpope/vim-rsi',
|
||||||
'tpope/vim-vinegar',
|
'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 ]]
|
--[[ plugin configs and maps ]]
|
||||||
require('gitsigns').setup()
|
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>L', '<cmd>Lazy<CR>')
|
||||||
map('n', '<Leader>?', '<cmd>Cheat40<CR>')
|
map('n', '<Leader>?', '<cmd>Cheat40<CR>')
|
||||||
map('n', '<Leader>.', '<cmd>Telescope git_files<CR>')
|
map('n', '<Leader>.', '<cmd>Telescope git_files<CR>')
|
||||||
|
|
|
@ -73,8 +73,8 @@ background #fdf6e3
|
||||||
cursor #cb4b16
|
cursor #cb4b16
|
||||||
cursor_text_color #fdf6e3
|
cursor_text_color #fdf6e3
|
||||||
|
|
||||||
color0 #073642
|
color0 #073642
|
||||||
color1 #dc322f
|
color1 #dc322f
|
||||||
color2 #859900
|
color2 #859900
|
||||||
color3 #b58900
|
color3 #b58900
|
||||||
color4 #268bd2
|
color4 #268bd2
|
||||||
|
@ -82,11 +82,13 @@ color5 #d33682
|
||||||
color6 #2aa198
|
color6 #2aa198
|
||||||
color7 #eee8d5
|
color7 #eee8d5
|
||||||
|
|
||||||
color8 #93a1a1
|
color8 #002b36
|
||||||
color9 #cb4b16
|
color9 #cb4b16
|
||||||
color10 #586e75
|
color10 #586e75
|
||||||
color11 #657b83
|
color11 #657b83
|
||||||
color12 #839496
|
color12 #839496
|
||||||
color13 #6c71c4
|
color13 #6c71c4
|
||||||
color14 #93a1a1
|
color14 #93a1a1
|
||||||
color15 #fdf6e3
|
color15 #fdf6e3
|
||||||
|
|
||||||
|
editor nvim
|
||||||
|
|
Loading…
Reference in a new issue