The never ending clean.

This commit is contained in:
2026-08-06 07:43:02 +02:00
parent e9556df285
commit 4f90def979
6 changed files with 51 additions and 13 deletions
+28 -3
View File
@@ -1,6 +1,3 @@
[general]
import = ["~/.config/alacritty/themes/noctalia.toml"]
[font]
size = 13
offset = { x = 0, y = 6 }
@@ -13,3 +10,31 @@ padding.y = 10
[cursor]
style.shape = "Beam"
style.blinking = "Always"
# -------------------------------------------------------------------
# Themes
# -------------------------------------------------------------------
# noctalia theme works on system color scheme
# import = ["~/.config/alacritty/themes/noctalia.toml"]
# -------------------------------------------------------------------
# Vscode dark to match neovim theme
[colors.primary]
background = '#121212'
foreground = '#e8e8e8'
[colors.cursor]
text = "#1F1F1F"
cursor = "#D4D4D4"
[colors.normal]
black = "#1F1F1F"
red = "#F44747"
green = "#6A9955"
yellow = "#DCDCAA"
blue = "#569CD6"
magenta = "#C586C0"
cyan = "#56B6C2"
white = "#D4D4D4"
[colors.bright]
black = "#808080"
-1
View File
@@ -1,6 +1,5 @@
-- ------------------------------------------------------------
-- BUILD SYSTEM
-- ------------------------------------------------------------
local function build(args)
if vim.fn.filereadable("build.sh") == 0 then
vim.notify("No build.sh found in current directory.", vim.log.levels.WARN)
-1
View File
@@ -1,6 +1,5 @@
-- ------------------------------------------------------------
-- TERMINAL SYSTEM
-- ------------------------------------------------------------
local term_buf = nil
local function open_term_split()
+19 -3
View File
@@ -6,12 +6,12 @@ vim.pack.add({
{ src = 'https://github.com/romus204/tree-sitter-manager.nvim' },
{ src = 'https://github.com/lukas-reineke/indent-blankline.nvim' },
{ src = 'hIdentlinesttps://github.com/xiyaowong/transparent.nvim' },
{ src = 'https://github.com/nvim-lua/plenary.nvim' },
{ src = 'https://github.com/kvrohit/rasmus.nvim' },
{ src = 'https://github.com/stevearc/oil.nvim' },
{ src = 'https://github.com/Mofiqul/vscode.nvim.git' },
})
-- Colorscheme
vim.cmd [[colorscheme rasmus]]
vim.cmd [[colorscheme vscode]]
-- Treesitter
require("tree-sitter-manager").setup()
@@ -27,6 +27,22 @@ require("ibl").setup({
},
})
-- File explorer
require("oil").setup({
default_file_explorer = true,
columns = { "icon" },
view_options = {
show_hidden = true,
},
keymaps = {
["<CR>"] = "actions.select",
["-"] = "actions.parent",
["_"] = "actions.open_cwd",
["q"] = "actions.close",
},
})
map("n", "<C-e>", "<Cmd>Oil<CR>")
-- Fuzzy Finders
require("fzf-lua").setup({})
map("n", "<C-p>", "<Cmd>FzfLua files<CR>")
+2 -2
View File
@@ -150,9 +150,9 @@ if [ "$DO_INSTALL" = true ]; then
# network & download
wget curl ca-certificates gnupg rsync
# core utilities
git unzip jq fzf tree direnv make
git unzip fd jq fzf ripgrep tree direnv make bat
# modern shell and cli tools
fish-shell alacritty fd ripgrep bat
fish-shell alacritty tmux
# build & dev tools
base-devel valgrind tree-sitter-cli go nodejs
# window manager & desktop
+2 -3
View File
@@ -1,9 +1,8 @@
#!/bin/bash
# ---------------------------------------------------------------------------------
# Golang install recipe
# Fetches the void php version
# then installs composer with php
# PHP install recipe
# Fetches the void php version and composer package
# ---------------------------------------------------------------------------------
set -e