Restructure repo to use pkgs subdirectory

This commit is contained in:
2025-09-02 04:01:17 -04:00
parent 20b6470625
commit a6afdd7efb
7 changed files with 6 additions and 5 deletions

20
pkgs/vim/.vimrc Normal file
View File

@@ -0,0 +1,20 @@
" SPDX-FileCopyrightText: 2019, 2022 Kris Lamoureux <kris@lamoureux.io>
" SPDX-License-Identifier: 0BSD
syntax enable
colorscheme monokai
set number
set tabstop=2
set shiftwidth=2
set expandtab
set colorcolumn=80
if &term =~ '256color'
" disable Background Color Erase (BCE) so that color schemes
" render properly when inside 256-color tmux and GNU screen.
" see also http://snk.tuxfamily.org/log/vim-256color-bce.html
set t_ut=
endif