cfg/aa-00-00/nvim/init.vim
inference 5fcb29f4f5
feat(loc)!: switch system "aa000-0" name to "aa-00-00"
I have switched to a clearer naming convention for my systems. This
commit moves the directory and file locations to reflect that change.
2025-06-27 19:01:09 +00:00

29 lines
745 B
VimL

" Inferencium
" Neovim - Configuration
" Copyright 2022-2023 Jake Winters
" SPDX-License-Identifier: BSD-3-Clause-Clear
" Version: 2.0.0.7
" Editor.
set number
set tabstop=4
" Plugins.
"call plug#begin()
" The default plugin directory will be as follows:
" - Vim (Linux/macOS): '~/.vim/plugged'
" - Vim (Windows): '~/vimfiles/plugged'
" - Neovim (Linux/macOS/Windows): stdpath('data') . '/plugged'
" You can specify a custom plugin directory by passing it as the argument
" - e.g. `call plug#begin('~/.vim/plugged')`
" - Avoid using standard Vim directory names like 'plugin'
"Plug 'nvim-tree/nvim-tree.lua'
" Initialize plugin system
" - Automatically executes `filetype plugin indent on` and `syntax enable`.
"call plug#end()