Compare commits
10 commits
a0c254ac34
...
a29ea2fdbe
Author | SHA1 | Date | |
---|---|---|---|
|
a29ea2fdbe | ||
|
e4630b25d7 | ||
|
22aa437ceb | ||
|
a1815ef7e2 | ||
|
2eb66d5a7e | ||
|
46a26852a3 | ||
|
4a2562b4cd | ||
|
03d12add30 | ||
|
b643242e8c | ||
|
42af23f04f |
7 changed files with 18 additions and 20 deletions
cli
gui/.config
lnx
|
@ -7,17 +7,18 @@ vim.opt.rtp:prepend(lazypath)
|
|||
|
||||
--[[ plugins list ]]
|
||||
require('lazy').setup {
|
||||
{'kdheepak/lazygit.nvim', dependencies = {'nvim-lua/plenary.nvim'}},
|
||||
{'ellisonleao/gruvbox.nvim', priority = 1000, config = true},
|
||||
{'nvim-orgmode/orgmode', event = 'VeryLazy', ft = {'org'}},
|
||||
{'nvim-telescope/telescope.nvim', dependencies = {'nvim-lua/plenary.nvim'}},
|
||||
{'nvim-treesitter/nvim-treesitter', cmd = 'TSUpdate'},
|
||||
{'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'go', 'lua', 'python', 'sh', 'zsh'}},
|
||||
'kdheepak/lazygit.nvim',
|
||||
'nvim-telescope/telescope.nvim',
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
'lewis6991/gitsigns.nvim',
|
||||
'lifepillar/vim-cheat40',
|
||||
'nvim-lualine/lualine.nvim',
|
||||
'tpope/vim-rsi',
|
||||
'tpope/vim-vinegar',
|
||||
{'nvim-lua/plenary.nvim', lazy = true},
|
||||
}
|
||||
|
||||
--[[ plugin configs and maps ]]
|
||||
|
@ -47,8 +48,6 @@ map('n', '<Leader>L', '<cmd>Lazy<CR>')
|
|||
map('n', '<Leader>?', '<cmd>Cheat40<CR>')
|
||||
map('n', '<Leader>.', '<cmd>Telescope git_files<CR>')
|
||||
map('n', '<Leader>,', '<cmd>Telescope buffers<CR>')
|
||||
map('n', '<Leader>T', '<cmd>colorscheme solarized8|set bg=light<CR>')
|
||||
map('n', '<Leader>t', '<cmd>colorscheme gruvbox8|set bg=dark<CR>')
|
||||
|
||||
--[[ theme ]]
|
||||
vim.o.termguicolors = true
|
||||
|
|
|
@ -11,7 +11,6 @@ export LESS='i M R'
|
|||
export PAGER=less
|
||||
export EDITOR=nvim
|
||||
export TIME_STYLE=long-iso
|
||||
export SSH_AUTH_SOCK="$HOME/.ssh/ssh_auth_sock"
|
||||
export ALTERNATE_EDITOR=
|
||||
|
||||
bindkey -e
|
||||
|
|
|
@ -4,7 +4,7 @@ autocmd BufRead *vimplugrc set ft=vim
|
|||
execute 'source' fnameescape(g:plug)
|
||||
plug#begin(g:plugdir)
|
||||
Plug 'junegunn/vim-plug'
|
||||
Plug 'lifepillar/vim-solarized8'
|
||||
Plug 'lifepillar/vim-gruvbox8'
|
||||
|
||||
Plug 'hashivim/vim-terraform'
|
||||
Plug 'itchyny/lightline.vim'
|
||||
|
@ -32,7 +32,7 @@ nmap <Leader>ft :Filetypes<CR>
|
|||
|
||||
# lightline
|
||||
g:lightline = {
|
||||
colorscheme: 'solarized',
|
||||
colorscheme: 'gruvbox8',
|
||||
separator: { left: '', right: ''},
|
||||
subseparator: { left: '\u2022', right: '\u2022'}
|
||||
}
|
||||
|
@ -45,9 +45,9 @@ if has('gui_running')
|
|||
map! <S-Insert> <MiddleMouse>
|
||||
endif
|
||||
|
||||
g:solarized_extra_hi_groups = 1
|
||||
g:gruvbox_plugin_hi_groups = 1
|
||||
&t_8f = "\u1b[38;2;%lu;%lu;%lum"
|
||||
&t_8b = "\u1b[48;2;%lu;%lu;%lum"
|
||||
&bg = 'dark'
|
||||
&tgc = 1
|
||||
&bg = 'light'
|
||||
colorscheme solarized8
|
||||
colorscheme gruvbox8
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Use Ctrl+Alt+F5 to reload
|
||||
font_family Cascadia Mono PL
|
||||
font_family Fantasque Sans Mono
|
||||
modify_font underline_position 1
|
||||
font_size 14
|
||||
font_size 15
|
||||
cursor_blink_interval 0
|
||||
term xterm-256color
|
||||
|
||||
|
|
|
@ -13,11 +13,11 @@ local cursor_bg = '#cb4b16'
|
|||
|
||||
-- fonts
|
||||
local fonts = wt.config_builder()
|
||||
fonts.font = wt.font('Fantasque Sans Mono')
|
||||
fonts.harfbuzz_features = {'calt=0'}
|
||||
fonts.font = wt.font('Cascadia Mono PL')
|
||||
fonts.harfbuzz_features = {'ss01', 'ss19', 'ss20'}
|
||||
fonts.font_size = fn.set_by_os{
|
||||
Darwin = 15,
|
||||
others = 12
|
||||
Darwin = 14,
|
||||
others = 11
|
||||
}
|
||||
|
||||
-- theme
|
||||
|
|
|
@ -20,8 +20,8 @@ cfg.check_for_updates = false
|
|||
-- fonts & text
|
||||
cfg.cursor_blink_rate = 0
|
||||
cfg.bold_brightens_ansi_colors = false
|
||||
cfg.font = wt.font('Cascadia Mono PL')
|
||||
cfg.harfbuzz_features = {'ss01', 'ss19', 'ss20'}
|
||||
cfg.font = wt.font('IBM Plex Mono')
|
||||
cfg.harfbuzz_features = {'ss03'}
|
||||
cfg.font_size = fn.set_by_os{
|
||||
Darwin = 14,
|
||||
others = 11
|
||||
|
|
|
@ -5,7 +5,7 @@ Xft.lcdfilter: true
|
|||
Xft.rgba: rgb
|
||||
Xft.hinting: true
|
||||
Xft.hintstyle: hintslight
|
||||
Xft.dpi: 192
|
||||
Xft.dpi: 96
|
||||
|
||||
#define FONT xft:VascadiaMod:size=12
|
||||
|
||||
|
|
Loading…
Reference in a new issue