aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua
diff options
context:
space:
mode:
authorJacob Janzen <jjanzenn@proton.me>2024-08-09 20:48:10 -0500
committerJacob Janzen <jjanzenn@proton.me>2024-08-09 20:48:10 -0500
commit40f02bc8088ca93224bf65f083c4ab3b17eaf435 (patch)
treef5c4d0bd619a4f7547f318a86ecfdd05e88ca814 /.config/nvim/lua
parentd97f4feb2c17835d31a4dff5f1109d50c4111943 (diff)
move gentoo into subdirectory
Diffstat (limited to '.config/nvim/lua')
-rw-r--r--.config/nvim/lua/appearance.org15
-rw-r--r--.config/nvim/lua/behaviour.org19
-rw-r--r--.config/nvim/lua/plugins.org27
3 files changed, 0 insertions, 61 deletions
diff --git a/.config/nvim/lua/appearance.org b/.config/nvim/lua/appearance.org
deleted file mode 100644
index 274f438..0000000
--- a/.config/nvim/lua/appearance.org
+++ /dev/null
@@ -1,15 +0,0 @@
-#+title: Neovim Appearance Settings
-Use line numbers.
-#+begin_src lua :tangle ~/.config/nvim/lua/appearance.lua :mkdirp yes
- vim.opt.number = true
-#+end_src
-
-Turn on syntax highlighting.
-#+begin_src lua :tangle ~/.config/nvim/lua/appearance.lua :mkdirp yes
- vim.cmd([[
- set termguicolors
- syntax on
- colorscheme default
- set background=light
- ]])
-#+end_src
diff --git a/.config/nvim/lua/behaviour.org b/.config/nvim/lua/behaviour.org
deleted file mode 100644
index 871b65e..0000000
--- a/.config/nvim/lua/behaviour.org
+++ /dev/null
@@ -1,19 +0,0 @@
-#+title: Neovim Behaviour Settings
-
-Use tabs with width 4.
-#+begin_src lua :tangle ~/.config/nvim/lua/behaviour.lua :mkdirp yes
- vim.opt.tabstop = 4
- vim.opt.expandtab = true
- vim.opt.shiftwidth = 4
- vim.opt.autoindent = true
-#+end_src
-
-Better command line completion.
-#+begin_src lua :tangle ~/.config/nvim/lua/behaviour.lua :mkdirp yes
- vim.opt.wildmode = 'longest,list'
-#+end_src
-
-Better management of file types.
-#+begin_src lua :tangle ~/.config/nvim/lua/behaviour.lua :mkdirp yes
- vim.cmd('filetype plugin indent on')
-#+end_src
diff --git a/.config/nvim/lua/plugins.org b/.config/nvim/lua/plugins.org
deleted file mode 100644
index f3027f9..0000000
--- a/.config/nvim/lua/plugins.org
+++ /dev/null
@@ -1,27 +0,0 @@
-#+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