Skip to content

Commit

Permalink
setup zellij
Browse files Browse the repository at this point in the history
  • Loading branch information
DivineGod committed Mar 13, 2023
1 parent a4ec496 commit 44289f3
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 5 deletions.
21 changes: 20 additions & 1 deletion alacritty/.config/alacritty/alacritty.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,26 @@ window:
#
# Override the variant of the GTK theme. Commonly supported values are `dark`
# and `light`. Set this to `None` to use the default theme variant.
#gtk_theme_variant: None
#gtk_theme_variant: none

# Decorations theme variant
#
# Override the variant of the System theme/GTK theme/Wayland client side
# decorations. Commonly supported values are `Dark`, `Light`, and `None` for
# auto pick-up. Set this to `None` to use the default theme variant.
#decorations_theme_variant: None

# Resize increments
#
# Prefer resizing window by discrete steps equal to cell dimensions.
#resize_increments: false

# Make `Option` key behave as `Alt` (macOS only):
# - OnlyLeft
# - OnlyRight
# - Both
# - None (default)
option_as_alt: OnlyLeft

scrolling:
# Maximum number of lines in the scrollback buffer.
Expand Down
2 changes: 1 addition & 1 deletion fish/.config/fish/config.fish
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fish_add_path "$HOME/go/bin"
fish_add_path "$HOME/.local/bin"

if status --is-interactive
set -x EDITOR "vim"
set -x EDITOR "nvim"
eval (/opt/homebrew/bin/brew shellenv)
end

Expand Down
2 changes: 1 addition & 1 deletion nvim/.config/nvim/after/plugin/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if not status_ok then
end

configs.setup({
ensure_installed = { "lua", "markdown", "markdown_inline", "bash", "python", "rust", "vim" }, -- put the language you want in this array
ensure_installed = { "lua", "markdown", "markdown_inline", "kdl", "bash", "python", "rust", "vim" }, -- put the language you want in this array
-- ensure_installed = "all", -- one of "all" or a list of languages
ignore_install = { "" }, -- List of parsers to ignore installing
sync_install = false, -- install languages synchronously (only applied to `ensure_installed`)
Expand Down
6 changes: 4 additions & 2 deletions nvim/.config/nvim/lua/ando/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ return require('packer').startup(function(use)
use('tpope/vim-repeat')
use('tpope/vim-sleuth')

use('imsnif/kdl.vim')

use {
'VonHeikemen/lsp-zero.nvim',
requires = {
Expand All @@ -93,7 +95,7 @@ return require('packer').startup(function(use)
use { 'simrat39/rust-tools.nvim' }

-- DAP
use { "mfussenegger/nvim-dap" } -- , commit = "6b12294a57001d994022df8acbe2ef7327d30587" }
use { "rcarriga/nvim-dap-ui" } -- , commit = "1cd4764221c91686dcf4d6b62d7a7b2d112e0b13" }
use { "mfussenegger/nvim-dap" } -- , commit = "6b12294a57001d994022df8acbe2ef7327d30587" }
use { "rcarriga/nvim-dap-ui" } -- , commit = "1cd4764221c91686dcf4d6b62d7a7b2d112e0b13" }
use { "ravenxrz/DAPInstall.nvim" } -- , commit = "8798b4c36d33723e7bba6ed6e2c202f84bb300de" }
end)
5 changes: 5 additions & 0 deletions nvim/.config/nvim/plugin/packer_compiled.lua
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@ _G.packer_plugins = {
path = "/Users/dg/.local/share/nvim/site/pack/packer/start/friendly-snippets",
url = "https://github.com/rafamadriz/friendly-snippets"
},
["kdl.vim"] = {
loaded = true,
path = "/Users/dg/.local/share/nvim/site/pack/packer/start/kdl.vim",
url = "https://github.com/imsnif/kdl.vim"
},
["lsp-zero.nvim"] = {
loaded = true,
path = "/Users/dg/.local/share/nvim/site/pack/packer/start/lsp-zero.nvim",
Expand Down

0 comments on commit 44289f3

Please sign in to comment.