Compare commits

...

3 commits

Author SHA1 Message Date
Peter Cai cafe6a98a2 nnn: Open directories always in new panes 2024-04-08 18:56:40 -04:00
Peter Cai 3e82da7802 nnn: Switch to nvim 2024-04-08 18:55:59 -04:00
Peter Cai a03404e625 Disable auto-formatting for nvim 2024-04-08 18:55:16 -04:00
2 changed files with 6 additions and 4 deletions

View file

@ -1,13 +1,13 @@
#!/usr/bin/env bash
if [ "$TERM_PROGRAM" != "WezTerm" ]; then
exec vim "$@"
exec nvim "$@"
fi
pane_id=$(wezterm cli get-pane-direction Right)
if [ -z "$pane_id" ]; then
exec wezterm cli split-pane --right --percent 70 -- vim "$@"
if [ -z "$pane_id" ] && [ ! -d "$1" ]; then
exec wezterm cli split-pane --right --percent 70 -- nvim "$@"
else
exec wezterm cli spawn -- vim "$@"
exec wezterm cli spawn -- nvim "$@"
fi

View file

@ -2,3 +2,5 @@
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here
vim.opt.relativenumber = false
-- Autoformatting can break stuff; turn it off.
vim.g.autoformat = false