diff options
author | Josh Rahm <rahm@google.com> | 2024-03-09 19:06:09 +0000 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2024-03-09 19:06:09 +0000 |
commit | fdb2f5d6d251f12f58e66d74d35aef2cdf3d5ad0 (patch) | |
tree | 1bc465328c9e323262a179d673fb5f26aadba689 /init.vim | |
parent | 737c49be10204e808c0129d93f8533b424ae4b87 (diff) | |
download | config.vim-fdb2f5d6d251f12f58e66d74d35aef2cdf3d5ad0.tar.gz config.vim-fdb2f5d6d251f12f58e66d74d35aef2cdf3d5ad0.tar.bz2 config.vim-fdb2f5d6d251f12f58e66d74d35aef2cdf3d5ad0.zip |
Yet more ricing.
Diffstat (limited to 'init.vim')
-rw-r--r-- | init.vim | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -178,6 +178,14 @@ noremap <M-©> <cmd>TSCaptureUnderCursor<cr> noremap Τ <cmd>Inspect<cr> command! Config edit $HOME/.config/nvim/init.vim +command! Configl edit $HOME/.config/nvim/local.vim + +cnoreabbrev <expr> _config expand("$HOME/.config/nvim") +cnoreabbrev <expr> _plugged expand("$HOME/.local/share/nvim/plugged") +cnoreabbrev <expr> _fm expand("$HOME/.local/share/nvim/plugged/fieldmarshal.vim") +cnoreabbrev <expr> _home expand("$HOME/.local/share/nvim") +cnoreabbrev <expr> _projects expand("$HOME/Projects") +cnoreabbrev <expr> _ escape(expand('%:h'), ' \') set textwidth=80 set colorcolumn=+1 @@ -240,6 +248,7 @@ lua << EOF layout_strategy = "center", results_title = false, sorting_strategy = "ascending", + -- path_display = "shorten", layout_config = { center = { width = 0.5, |