Compare commits
No commits in common. "fb6b8ffb3ea9363e554c7933cfdae8a95fb4be92" and "038e63d8134b27d8b5781f9249f1af3a0f2877e0" have entirely different histories.
fb6b8ffb3e
...
038e63d813
4 changed files with 137 additions and 139 deletions
|
@ -105,9 +105,16 @@ return {
|
|||
"preservim/tagbar",
|
||||
vim.keymap.set("n", "<leader>fs", ":TagbarToggle<CR>", { desc = "Toggle Tagbar" }),
|
||||
},
|
||||
--{
|
||||
-- "yegappan/taglist",
|
||||
-- vim.keymap.set("n", "<leader>fs", ":TlistToggle<CR>", { desc = "Toggle Taglist" }),
|
||||
-- vim.cmd("let Tlist_Use_Right_Window = 1"),
|
||||
-- vim.cmd("let Tlist_Show_One_File = 1"),
|
||||
-- vim.cmd("let Tlist_WinWidth = 50"),
|
||||
--},
|
||||
{
|
||||
"goolord/alpha-nvim",
|
||||
dependencies = { "nvim-tree/nvim-web-devicons", "nvim-neo-tree/neo-tree.nvim" },
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
config = function()
|
||||
local alpha = require("alpha")
|
||||
local dashboard = require("alpha.themes.startify")
|
||||
|
|
|
@ -7,12 +7,15 @@ return {
|
|||
"MunifTanjim/nui.nvim",
|
||||
-- {"3rd/image.nvim", opts = {}}, -- Optional image support in preview window: See `# Preview Mode` for more information
|
||||
},
|
||||
lazy = true, -- neo-tree will lazily load itself
|
||||
lazy = false, -- neo-tree will lazily load itself
|
||||
opts = {
|
||||
filesystem = {
|
||||
filtered_items = {
|
||||
visible = true,
|
||||
hide_gitignored = true,
|
||||
-- hide_dotfiles = false,
|
||||
hide_by_name = {
|
||||
".git",
|
||||
},
|
||||
},
|
||||
},
|
||||
event_handlers = {
|
||||
|
|
|
@ -25,9 +25,6 @@ bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-no-clear "xcli
|
|||
bind S-down split-window -v -c "#{pane_current_path}"
|
||||
bind S-right split-window -h -c "#{pane_current_path}"
|
||||
|
||||
bind J split-window -v -c "#{pane_current_path}"
|
||||
bind L split-window -h -c "#{pane_current_path}"
|
||||
|
||||
# Override new window
|
||||
bind c new-window -c "~/"
|
||||
|
||||
|
@ -37,18 +34,9 @@ bind -n C-Right select-pane -R
|
|||
bind -n C-Up select-pane -U
|
||||
bind -n C-Down select-pane -D
|
||||
|
||||
|
||||
bind -n C-H select-pane -L
|
||||
bind -n C-J select-pane -D
|
||||
bind -n C-K select-pane -U
|
||||
bind -n C-L select-pane -R
|
||||
|
||||
bind -n C-S-Left previous-window
|
||||
bind -n C-S-Right next-window
|
||||
|
||||
bind -n M-H previous-window
|
||||
bind -n M-L next-window
|
||||
|
||||
# Config
|
||||
bind R source-file ~/.config/tmux/tmux.conf \; display "Config reloaded!"
|
||||
|
||||
|
|
2
.zshrc
2
.zshrc
|
@ -149,5 +149,5 @@ zinit light zsh-users/zsh-syntax-highlighting
|
|||
# Key bindings config
|
||||
#KEYTIMEOUT=5
|
||||
# ^[ for esc; ^I for tab
|
||||
bindkey '^a' autosuggest-accept
|
||||
bindkey '^[[Z' autosuggest-accept
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue