This commit is contained in:
Jellyfish 2024-12-31 10:39:37 -08:00
parent cffd70b7c8
commit 6068c33983
8 changed files with 24 additions and 4 deletions

3
.config/nvim/init.lua Normal file
View File

@ -0,0 +1,3 @@
require("config.bindings")
require("plugins.lazy")
require("config.options")

View File

@ -0,0 +1,9 @@
-- Mapleader
vim.g.mapleader = ' '
vim.keymap.set("n", "<leader>pv", vim.cmd.Ex)
vim.keymap.set("n", "<C-u>", "<C-u>zz")
vim.keymap.set("n", "<C-d>", "<C-d>zz")
vim.keymap.set("n", "n", "nzz")
vim.keymap.set("n", "N", "Nzz")
vim.keymap.set("n", "<C-c>", "<nop>")

View File

@ -0,0 +1,8 @@
vim.o.shiftwidth = 4
vim.o.tabstop = 2
vim.o.expandtab = true
vim.o.nu = true
vim.o.rnu = true
vim.o.scr = 10
vim.o.so = 10
vim.o.wrap = false

View File

View File

@ -6,8 +6,8 @@ setw -g mouse on
# Pane Splitting # Pane Splitting
unbind '"' unbind '"'
unbind '%' unbind '%'
bind -n M-v split-window -h bind -n M-> split-window -h
bind -n M-> split-window -v bind -n M-. split-window -v
# Pane Sizing # Pane Sizing
bind -n M-H resize-pane -L bind -n M-H resize-pane -L
@ -40,8 +40,8 @@ bind -n M-4 selectw -t:=9
# Window Mutation # Window Mutation
bind -n M-Space new-window bind -n M-Space new-window
bind -n M-Tab last-window bind -n M-Tab last-window
bind -n M-\' confirm-before -p "Kill pane #P? (y/n)" kill-pane bind -n M-- confirm-before -p "Kill pane #P? (y/n)" kill-pane
bind -n M-| confirm-before -p "Kill window #W? (y/n)" kill-window bind -n M-= confirm-before -p "Kill window #W? (y/n)" kill-window
# Plugins # Plugins

0
.config/yazi/keymap.toml Normal file
View File

0
.config/yazi/theme.toml Normal file
View File

0
.config/yazi/yazi.toml Normal file
View File