Compare commits

...

3 commits

Author SHA1 Message Date
bd9f34c769
checkpoint 2023-09-23 14:51:31 +01:00
e76cc4d8d0
remove README.md 2023-09-23 13:57:44 +01:00
bb7edda9a3
checkpoint: document used plugins 2023-09-23 13:56:59 +01:00
4 changed files with 94 additions and 20 deletions

View file

@ -1,10 +1,18 @@
#!/usr/bin/env bash
set -euo pipefail
set -o errexit
set -o nounset
set -o pipefail
CONFIG_ROOT="${XDG_CONFIG_HOME:-null}"
if [[ "${CONFIG_ROOT}" == "null" ]]; then
CONFIG_ROOT="${HOME}/.config"
fi
ROOT_DIR="$( cd "$( dirname $0 )/.." && pwd )"
NEOVIM_CONFIG_SOURCE_DIR="${ROOT_DIR}/nvim"
NEOVIM_CONFIG_DESTINATION_DIR="${XDG_CONFIG_HOME}/nvim"
NEOVIM_CONFIG_DESTINATION_DIR="${CONFIG_ROOT}/nvim"
VERSION="$( git describe --tags | tr -d '\n' )"
PROJECT_NAME="nvim.d"
CODEFLOW_GROUP="linux-home"
@ -14,26 +22,26 @@ action="$1"
function backup {
if [ -d "${NEOVIM_CONFIG_DESTINATION_DIR}" ]; then
echo "[INFO] backing up existing config..."
timestamp=$( date +"%Y.%m.%dT%H.%M.%S" )
backup_dir="${ROOT_DIR}/backup"
mkdir -p ${backup_dir}
cd ${NEOVIM_CONFIG_DESTINATION_DIR}
tar czf "${backup_dir}/neovim-config-${timestamp}.tar.gz" .
TIMESTAMP=$( date +"%Y.%m.%dT%H.%M.%S" )
BACKUP_DIR="${ROOT_DIR}/backup"
mkdir -p "${BACKUP_DIR}"
cd "${NEOVIM_CONFIG_DESTINATION_DIR}"
tar czf "${BACKUP_DIR}/neovim-config-${TIMESTAMP}.tar.gz" .
fi
}
function clean {
rm -f ${NEOVIM_CONFIG_DESTINATION_DIR}/init.lua
find ${NEOVIM_CONFIG_DESTINATION_DIR} -maxdepth 1 -mindepth 1 -type d -not -iwholename "*/plugin" | xargs rm -rf
rm -f "${NEOVIM_CONFIG_DESTINATION_DIR}/init.lua"
find "${NEOVIM_CONFIG_DESTINATION_DIR}" -maxdepth 1 -mindepth 1 -type d -not -iwholename "*/plugin" | xargs rm -rf
}
function update {
mkdir -p ${NEOVIM_CONFIG_DESTINATION_DIR}
function install {
mkdir -p "${NEOVIM_CONFIG_DESTINATION_DIR}"
# Syncing the neovim configuration files
echo "[INFO] Syncing ${NEOVIM_CONFIG_SOURCE_DIR} to ${NEOVIM_CONFIG_DESTINATION_DIR}..."
rsync -avh ${NEOVIM_CONFIG_SOURCE_DIR}/ ${NEOVIM_CONFIG_DESTINATION_DIR}
chmod a-rwx,u+rwx ${NEOVIM_CONFIG_DESTINATION_DIR}
rsync -avh "${NEOVIM_CONFIG_SOURCE_DIR}/" "${NEOVIM_CONFIG_DESTINATION_DIR}"
chmod a-rwx,u+rwx "${NEOVIM_CONFIG_DESTINATION_DIR}"
# Ensuring the state directories are present
mkdir -p ${XDG_STATE_HOME}/nvim/{backup,swap,undo,view} ${XDG_STATE_HOME}/logs/nvim ${XDG_DATA_HOME}/nvim/spell
@ -64,8 +72,8 @@ case ${action} in
clean)
clean
;;
update)
update
install)
install
;;
package)
package

View file

@ -3,8 +3,8 @@
backup:
@bash ./.helpers/config backup
update:
@bash ./.helpers/config update
install:
@bash ./.helpers/config install
clean: backup
@bash ./.helpers/config clean

69
README.asciidoc Normal file
View file

@ -0,0 +1,69 @@
= nvim.d
My Neovim configuration for neovim version 0.9.0+.
== Dependencies
== Installation
- clone repo or download the latest release
- if you have eisting neovim config you can take a backup of this. Timestamped tar file created in backup dir within the current dir.
```
make backup
```
- install config with your XDG_CONIFIG_HOME dir (default is ~/.config)
```
make install
```
- install the lazy package manager
```
make install_lazy
```
- start neovim. when first launched the lazy package manager will proceed to install all missing plugins.
== Plugins
[%header,cols=3*]
|===
|Name
|Purpose
|Link to source
|folke/lazy.nvim
|Manages all other neovim plugins.
|https://github.com/folke/lazy.nvim
|folke/tokyonight.nvim
|Sets the Tokyonight colour scheme for neovim.
|https://github.com/folke/tokyonight.nvim
|neovim/nvim-lspconfig
|Makes configuring LSP settings in neovim much easier.
|https://github.com/neovim/nvim-lspconfig
|nvim-treesitter/nvim-treesitter
|An interface for treesitter to provide better highlighting among other functionalities.
|https://github.com/nvim-treesitter/nvim-treesitter
|akinsho/bufferline.nvim
|For visualising buffers and easy navigation between them.
|https://github.com/akinsho/bufferline.nvim
|nvim-tree/nvim-web-devicons
|Provides icons that are used in other plugins.
|https://github.com/nvim-tree/nvim-web-devicons
|is0n/tui-nvim
|Allows you to open terminal programs in neovim. Currently used to integration the LF file manager within neovim.
|https://github.com/is0n/tui-nvim
|mfussenegger/nvim-lint
|An asynchronous linter plugin complementary to the LSP client. Used for external linters such as golangci-lint and pyls.
|https://github.com/mfussenegger/nvim-lint
|===
== Key mappings
== Compatibility

View file

@ -1,3 +0,0 @@
# neovim-config
Neovim configuration for neovim version 0.8.2+.