From 7ba21be4a06a6d5a713871edb4479d489ed456f5 Mon Sep 17 00:00:00 2001 From: Jacob Bohanon Date: Tue, 7 Nov 2023 08:43:11 -0500 Subject: [PATCH] nvim plugins, migrate alacritty config --- alacritty/alacritty.toml | 21 ++++++++++++ alacritty/alacritty.yml | 65 ------------------------------------ nvim/lua/plugins/harpoon.lua | 2 +- nvim/lua/plugins/init.lua | 2 ++ 4 files changed, 24 insertions(+), 66 deletions(-) create mode 100644 alacritty/alacritty.toml delete mode 100644 alacritty/alacritty.yml diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml new file mode 100644 index 0000000..cc250b2 --- /dev/null +++ b/alacritty/alacritty.toml @@ -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 diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml deleted file mode 100644 index 025165b..0000000 --- a/alacritty/alacritty.yml +++ /dev/null @@ -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 - diff --git a/nvim/lua/plugins/harpoon.lua b/nvim/lua/plugins/harpoon.lua index f601683..de2a4ff 100644 --- a/nvim/lua/plugins/harpoon.lua +++ b/nvim/lua/plugins/harpoon.lua @@ -16,7 +16,7 @@ local nav_file = function(n) end end -harpmap('ee', require('harpoon.mark').add_file) +harpmap('h', require('harpoon.mark').add_file) harpmap('fh', harp.toggle_quick_menu) harpmap('1', nav_file(1)) harpmap('2', nav_file(2)) diff --git a/nvim/lua/plugins/init.lua b/nvim/lua/plugins/init.lua index 2e4174f..d19f02f 100644 --- a/nvim/lua/plugins/init.lua +++ b/nvim/lua/plugins/init.lua @@ -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")