nvim plugins, migrate alacritty config
This commit is contained in:
21
alacritty/alacritty.toml
Normal file
21
alacritty/alacritty.toml
Normal file
@@ -0,0 +1,21 @@
|
||||
[font.normal]
|
||||
family = "FiraCode Nerd Font"
|
||||
style = "regular"
|
||||
|
||||
[selection]
|
||||
save_to_clipboard = true
|
||||
|
||||
[shell]
|
||||
args = ["-l", "-c", "zellij attach || zellij"]
|
||||
program = "/usr/bin/zsh"
|
||||
|
||||
[window]
|
||||
opacity = 0.8
|
||||
|
||||
[window.dimensions]
|
||||
columns = 257
|
||||
lines = 115
|
||||
|
||||
[window.position]
|
||||
x = 1550
|
||||
y = 0
|
||||
@@ -1,65 +0,0 @@
|
||||
window:
|
||||
opacity: 0.8
|
||||
# decorations: none
|
||||
dimensions:
|
||||
lines: 115
|
||||
columns: 257
|
||||
position:
|
||||
x: 1550
|
||||
y: 0
|
||||
selection:
|
||||
save_to_clipboard: true
|
||||
shell:
|
||||
program: /usr/bin/zsh
|
||||
args:
|
||||
- -l
|
||||
- -c
|
||||
- zellij attach || zellij
|
||||
font:
|
||||
# Normal (roman) font face
|
||||
normal:
|
||||
# Font family
|
||||
#
|
||||
# Default:
|
||||
# - (macOS) Menlo
|
||||
# - (Linux/BSD) monospace
|
||||
# - (Windows) Consolas
|
||||
family: FiraCode Nerd Font
|
||||
style: regular
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
#style: Regular
|
||||
|
||||
# Bold font face
|
||||
#bold:
|
||||
# Font family
|
||||
#
|
||||
# If the bold family is not specified, it will fall back to the
|
||||
# value specified for the normal font.
|
||||
#family: monospace
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
#style: Bold
|
||||
|
||||
# Italic font face
|
||||
#italic:
|
||||
# Font family
|
||||
#
|
||||
# If the italic family is not specified, it will fall back to the
|
||||
# value specified for the normal font.
|
||||
#family: monospace
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
#style: Italic
|
||||
|
||||
# Bold italic font face
|
||||
#bold_italic:
|
||||
# Font family
|
||||
#
|
||||
# If the bold italic family is not specified, it will fall back to the
|
||||
# value specified for the normal font.
|
||||
#family: monospace
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
#style: Bold Italic
|
||||
|
||||
@@ -16,7 +16,7 @@ local nav_file = function(n)
|
||||
end
|
||||
end
|
||||
|
||||
harpmap('<Leader>ee', require('harpoon.mark').add_file)
|
||||
harpmap('<Leader>h', require('harpoon.mark').add_file)
|
||||
harpmap('<Leader>fh', harp.toggle_quick_menu)
|
||||
harpmap('<Leader>1', nav_file(1))
|
||||
harpmap('<Leader>2', nav_file(2))
|
||||
|
||||
@@ -56,6 +56,8 @@ Plug 'kyazdani42/nvim-tree.lua'
|
||||
Plug('ellisonleao/glow.nvim', { branch = 'main' })
|
||||
Plug 'tpope/vim-dispatch'
|
||||
|
||||
Plug 'jamestthompson3/nvim-remote-containers'
|
||||
|
||||
vim.call('plug#end')
|
||||
|
||||
require("plugins/airline")
|
||||
|
||||
Reference in New Issue
Block a user