move things

This commit is contained in:
Andrea Blankenstijn 2022-05-25 12:45:07 +02:00
parent 961df834b3
commit fdf2766cfd
26 changed files with 9 additions and 54 deletions

View File

@ -1,46 +1,3 @@
# My Neovim configuration
# HSV2 Neovim
## Included plugins
- [auto-sesion](https://github.com/rmagatti/auto-session) auto save session for
working directory
- [Comment.nvim](https://github.com/numToStr/Comment.nvim)
- [coc.nvim](https://github.com/neoclide/coc.nvim) completion
- [fugitive](https://github.com/tpope/vim-fugitive) git integration
- [FTerm.nvim](https://github.com/numToStr/FTerm.nvim) floating terminal
- [gentoo-syntax](https://github.com/gentoo/gentoo-syntax) syntax for various
gentoo specific files
- [gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim) git integration
- [indent-blankline.nvim](https://github.com/lukas-reineke/indent-blankline.nvim)
- [lualine.nvim](https://github.com/nvim-lualine/lualine.nvim) status line and
tab line
- [packer.nvim](https://github.com/wbthomason/packer.nvim) plugin manager
- [polyglot](https://github.com/sheerun/vim-polyglot) syntax
- [rooter](https://github.com/airblade/vim-rooter) auto cd
- [suda.vim](https://github.com/lambdalisue/suda.vim) sudo support
- [which-key](https://github.com/folke/which-key.nvim) keymap guide
- [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)
- [cheatsheet](https://github.com/sudormrfbin/cheatsheet.nvim) keymap search
- [file browser](https://github.com/nvim-telescope/telescope-file-browser.nvim)
- [fzf](https://github.com/nvim-telescope/telescope-fzf-native.nvim) fuzzy
search
- [neoclip](https://github.com/AckslD/nvim-neoclip.lua) clipboard history
- [packer](https://github.com/nvim-telescope/telescope-packer.nvim)
- [repo](https://github.com/cljoly/telescope-repo.nvim) (find local
repositories)
- [session-lens](https://github.com/rmagatti/session-lens) list saved
sessions by auto-session
- [symbols](https://github.com/nvim-telescope/telescope-symbols.nvim) search
symbols
## Theme
- [neon](https://github.com/rafamadriz/neon)
## 42 specific features
Edit $MYVIMRC and set FLAVOUR_42 to true to disable tab expansion and enable
the following plugins:
- [42header](https://github.com/42Paris/42header)
- [c_formatter_42.vim](https://github.com/cacharle/c_formatter_42.vim)
Work in progress

9
run.sh
View File

@ -1,9 +0,0 @@
#!/bin/sh
# vi: et sw=4 ts=4:
ROOT="$(dirname $(realpath $0))"
export XDG_DATA_HOME="$ROOT/tmp"
export XDG_CONFIG_HOME="$ROOT/conf"
rm -f "$XDG_CONFIG_HOME/nvim/plugin/packer_compiled.lua"
nvim -u "$XDG_CONFIG_HOME/nvim/init.lua" \
--cmd "lua vim.opt.runtimepath:append('$XDG_CONFIG_HOME/nvim')" $@

7
tools/run.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
# vi: et sw=4 ts=4:
ROOT="$(dirname $(realpath $0))/.."
env XDG_DATA_HOME="$ROOT/tmp" \
XDG_CONFIG_HOME="$ROOT" \
MYVIMRC="$ROOT/nvim/init.lua" \
nvim $@