diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-08-08 17:07:35 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-08-08 17:07:35 -0500 |
commit | 57667f82145277920ddacf59bf57c0046129bd63 (patch) | |
tree | 61dbee1960ab39bd69a1da0010c9f78b4fe6659d /.config/nvim/lua/plugins.org | |
parent | 545dfbb53f2bb6d7669ca7bfd1f4775a9150b530 (diff) |
move configs to hidden directories
Diffstat (limited to '.config/nvim/lua/plugins.org')
-rw-r--r-- | .config/nvim/lua/plugins.org | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins.org b/.config/nvim/lua/plugins.org new file mode 100644 index 0000000..f3027f9 --- /dev/null +++ b/.config/nvim/lua/plugins.org @@ -0,0 +1,27 @@ +#+title: Neovim Plugins +* Setup +Use =lazy= to manage plugins. This block activates =lazy=. +#+begin_src lua :tangle ~/.config/nvim/lua/plugins.lua :mkdirp yes + local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" + if not vim.loop.fs_stat(lazypath) then + vim.fn.system({ + "git", + "clone", + "--filter=blob:none", + "https://github.com/folke/lazy.nvim.git", + "--branch=stable", + lazypath, + }) + end + vim.opt.rtp:prepend(lazypath) +#+end_src + +* Plugins +I use =lightline= for a nice status bar. The Ayu theme matches my overall colour scheme. =delimitmate= provides better delimiter handling. Trailing whitespace is highlighted with =vim-trailing-whitespace=. +#+begin_src lua :tangle ~/.config/nvim/lua/plugins.lua :mkdirp yes + require('lazy').setup({ + 'itchyny/lightline.vim', + 'Raimondi/delimitMate', + 'bronson/vim-trailing-whitespace', + }) +#+end_src |