From e6390fc426c5a2baa215ce6217c2b9a6cbf0016c Mon Sep 17 00:00:00 2001 From: Callum Renwick Date: Sat, 28 May 2022 14:11:05 +0100 Subject: [PATCH 1/4] Fix typo in nvim plugins list --- nvim/lua/plugin_manager.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/plugin_manager.lua b/nvim/lua/plugin_manager.lua index d836084..61107d2 100644 --- a/nvim/lua/plugin_manager.lua +++ b/nvim/lua/plugin_manager.lua @@ -27,6 +27,6 @@ return require("packer").startup(function() use "nice/sweater" use "ajgrf/sprinkles" use "xero/sourcerer.vim" - use "franbahc/miramare" + use "franbach/miramare" use "everard/vim-aurora" end) From 64c5908fd47bed11625f64fa32d933f63beb1aef Mon Sep 17 00:00:00 2001 From: Callum Renwick Date: Sat, 28 May 2022 18:16:54 +0100 Subject: [PATCH 2/4] Update README --- README | 53 ++++++++++------------------------------------------- 1 file changed, 10 insertions(+), 43 deletions(-) diff --git a/README b/README index 4c1285a..60fe228 100644 --- a/README +++ b/README @@ -1,51 +1,18 @@ -# cren's cracking config +These files record the configurations I use for various Linux/unix program. +(Such files are also known as dotfiles.) -Please find enclosed configuration files written by me to customise -various programs I use. +I make changes to this repository regularly. Its contents are in no +way stable. -Also enclosed is fehbg, a script that was generated automatically by -a command I ran. I include it for completeness: without it, this -repository would not properly record my entire system configuration. +All the files in this repository are available under licences which +allow free modification and redistribution. -## Programs for which configuration files exist +Files authored by me are licenced under the BSD 3-clause licence. The +full text can be found in the LICENCE file enclosed. -### Programs I use regularly - -* zsh (Z shell) -* nvim (neovim) -* the `river` Wayland compositor -* the `foot` terminal emulator - -### Programs I no longer use regularly - -Because I don't use these programs regularly, the configuration files -for these might be for an older version of the program, and aren't -maintained. - -* dwm (dynamic window manager) -* the wallpaper-setting component of feh -* xorg x server -* alacritty -* bspwm (binary space partition window manager) -* sxhkd (simple x hotkey daemon) - -## Fair warning - -I write these files for myself, and not for portability. If you try -to use them yourself, you may encounter problems. - -Further, I regularly change the contents of these files. If you try -to always use the latest version of each file, you may find that -program configurations change significantly over time. - -## Freely redistributable +Files not authored by me may be available under different licences, but +all of them allow free modification and redistribution. All the files written by me in this repository are licenced under the BSD 3-clause licence. The full text can be found in the LICENCE file enclosed. - -All the files **not** written by me in this repository are licenced -under licences that allow free modification and redistribution. All -files not written by me are accompanied by their licence(s). Such -accompanying licences are headed with a note explaining which files -they licence. From 08ffbea57a2d68c31909b9dccc90c46c775e9ddb Mon Sep 17 00:00:00 2001 From: Callum Renwick Date: Sat, 28 May 2022 18:20:16 +0100 Subject: [PATCH 3/4] Bump LICENCE year and change name on licence Now it's my handle instead of my real name --- LICENCE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENCE b/LICENCE index 549cadf..ba1927a 100644 --- a/LICENCE +++ b/LICENCE @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright (c) 2021, Callum Renwick +Copyright (c) 2022, d3mon All rights reserved. Redistribution and use in source and binary forms, with or without From bd6ccb9798e422a463e010b4abc93f4bea1b1422 Mon Sep 17 00:00:00 2001 From: Callum Renwick Date: Sat, 28 May 2022 18:21:16 +0100 Subject: [PATCH 4/4] Change default nvim colour scheme --- nvim/lua/interface.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/interface.lua b/nvim/lua/interface.lua index bfae6a4..73c34c7 100644 --- a/nvim/lua/interface.lua +++ b/nvim/lua/interface.lua @@ -1,6 +1,6 @@ -- Interface settings -- Set preferred colour scheme here; it will be substituted below -local colours = "scheakur" +local colours = "sourcerer" -- Show line numbers vim.wo.number = true