2022-12-25 07:40:14 +00:00
|
|
|
" Neovim - Configuration
|
2022-12-25 07:37:28 +00:00
|
|
|
|
2022-12-25 07:40:14 +00:00
|
|
|
" Copyright 2022-2023 Inference
|
|
|
|
" SPDX-License-Identifier: BSD 3-Clause-Clear
|
2022-12-25 07:37:28 +00:00
|
|
|
|
2022-12-26 12:39:48 +00:00
|
|
|
" Version: 0.1.0.3
|
2022-12-25 07:37:28 +00:00
|
|
|
|
|
|
|
|
2022-12-26 12:39:48 +00:00
|
|
|
" Editor.
|
2022-05-21 19:23:19 +01:00
|
|
|
set number
|
|
|
|
set tabstop=4
|
2022-12-26 12:39:48 +00:00
|
|
|
|
|
|
|
" 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()
|