update
This commit is contained in:
parent
00e7848ced
commit
7e4fc2d9c9
2 changed files with 40 additions and 1 deletions
39
alacritty/.config/alacritty/alacritty.toml
Normal file
39
alacritty/.config/alacritty/alacritty.toml
Normal file
|
@ -0,0 +1,39 @@
|
|||
[font]
|
||||
normal = { family = "Inconsolata Nerd Font Mono" }
|
||||
size = 13
|
||||
|
||||
[colors]
|
||||
|
||||
[colors.primary]
|
||||
foreground = '#d9d9d9'
|
||||
background = '#181818'
|
||||
|
||||
[colors.normal]
|
||||
black = '#212121'
|
||||
red = '#b7141f'
|
||||
green = '#457b24'
|
||||
yellow = '#f6981e'
|
||||
blue = '#134eb2'
|
||||
magenta = '#560088'
|
||||
cyan = '#0e717c'
|
||||
white = '#d9d9d9'
|
||||
|
||||
[colors.bright]
|
||||
black = '#424242'
|
||||
red = '#e83b3f'
|
||||
green = '#7aba3a'
|
||||
yellow = '#ffea2e'
|
||||
blue = '#54a4f3'
|
||||
magenta = '#aa4dbc'
|
||||
cyan = '#26bbd1'
|
||||
white = '#efefef'
|
||||
|
||||
[[keyboard.bindings]]
|
||||
chars = "\u001B[13;2u"
|
||||
key = "Return"
|
||||
mods = "Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
chars = "\u001B[13;5u"
|
||||
key = "Return"
|
||||
mods = "Control"
|
|
@ -259,7 +259,7 @@ require("lazy").setup({
|
|||
vim.keymap.set('n', '<leader>fg', builtin.git_files, {})
|
||||
vim.keymap.set('n', '<leader>o', buffers_autopick, {})
|
||||
vim.keymap.set('n', '<leader>st', builtin.live_grep, {})
|
||||
vim.keymap.set('n', '<leader>ss', builtin.lsp_workspace_symbols, {})
|
||||
vim.keymap.set('n', '<leader>ss', builtin.treesitter, {})
|
||||
end
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue