Tmux compatibility, add just --unstable alias

This commit is contained in:
SHuRiKeN 2023-10-01 12:52:27 +05:30
parent 934b3ed160
commit c3b95e845f
3 changed files with 19 additions and 2 deletions

View File

@ -19,5 +19,9 @@ function fish_greeting
end
starship init fish | source
set EDITOR "nvim" # Set nvim as the default editor
set VISUAL "nvim"
alias just="just --unstable"
if status is-interactive
and not set -q TMUX
exec tmux new-session -A -s main
end

View File

@ -1,5 +1,14 @@
local M = {}
M.general = {
n = {
["<C-h>"] = { "<cmd> TmuxNavigateLeft<CR>", "window left"},
["<C-l>"] = { "<cmd> TmuxNavigateRight<CR>", "window right"},
["<C-j>"] = { "<cmd> TmuxNavigateDown<CR>", "window down"},
["<C-k>"] = { "<cmd> TmuxNavigateUp<CR>", "window up"},
}
}
M.dap = {
plugin = true,
n = {

View File

@ -1,4 +1,8 @@
local plugins = {
{
"christoomey/vim-tmux-navigator",
lazy = false
},
{
"williamboman/mason.nvim",
opts = {