update
This commit is contained in:
parent
081002382a
commit
a1d955fc11
6 changed files with 79 additions and 57 deletions
|
|
@ -1,24 +1,24 @@
|
|||
return {
|
||||
-- the opts function can also be used to change the default opts:
|
||||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = function(_, opts)
|
||||
table.insert(opts.sections.lualine_x, "😄")
|
||||
end,
|
||||
},
|
||||
|
||||
-- or you can return new options to override all the defaults
|
||||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = function()
|
||||
return {
|
||||
--[[add your custom lualine config here]]
|
||||
}
|
||||
end,
|
||||
},
|
||||
|
||||
-- add jsonls and schemastore packages, and setup treesitter for json, json5 and jsonc
|
||||
{ import = "lazyvim.plugins.extras.lang.json" },
|
||||
-- -- the opts function can also be used to change the default opts:
|
||||
-- {
|
||||
-- "nvim-lualine/lualine.nvim",
|
||||
-- event = "VeryLazy",
|
||||
-- opts = function(_, opts)
|
||||
-- table.insert(opts.sections.lualine_x, "😄")
|
||||
-- end,
|
||||
-- },
|
||||
--
|
||||
-- -- or you can return new options to override all the defaults
|
||||
-- {
|
||||
-- "nvim-lualine/lualine.nvim",
|
||||
-- event = "VeryLazy",
|
||||
-- opts = function()
|
||||
-- return {
|
||||
-- --[[add your custom lualine config here]]
|
||||
-- }
|
||||
-- end,
|
||||
-- },
|
||||
--
|
||||
-- -- add jsonls and schemastore packages, and setup treesitter for json, json5 and jsonc
|
||||
-- { import = "lazyvim.plugins.extras.lang.json" },
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,6 +21,10 @@ set -g base-index 1
|
|||
set -g pane-base-index 1
|
||||
set-window-option -g pane-base-index 1
|
||||
set-option -g renumber-windows on
|
||||
set-option -g @ssh-split-h-key "%"
|
||||
set-option -g @ssh-split-v-key '"'
|
||||
set-option -g @ssh-split-keep-cwd "true"
|
||||
set-option -g @ssh-split-keep-remote-cwd "true"
|
||||
|
||||
# Use Alt-arrow keys without prefix key to switch panes
|
||||
bind -n M-Left select-pane -L
|
||||
|
|
@ -41,6 +45,7 @@ set -g @plugin 'tmux-plugins/tmux-sensible'
|
|||
set -g @plugin 'christoomey/vim-tmux-navigator'
|
||||
set -g @plugin 'catppuccin/tmux'
|
||||
set -g @plugin 'tmux-plugins/tmux-yank'
|
||||
set -g @plugin 'pschmitt/tmux-ssh-split'
|
||||
|
||||
set -g @catppuccin_flavour 'mocha'
|
||||
# set vi-mode
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue