Compare commits

...

2 commits

Author SHA1 Message Date
irl
a83114d967 feat: fix gov.uk 2025-07-08 14:18:05 +01:00
irl
6c4495ba95 feat: rounded tmux and vim status 2025-07-07 23:57:15 +01:00
3 changed files with 26 additions and 5 deletions

View file

@ -44,6 +44,13 @@ in
"extensions.pocket.enabled" = false;
"identity.fxaccounts.enabled" = false;
};
userContent = ''
/* It's a dot not an interpunct */
.govuk-logo-dot {
fill: #fff !important;
transform: translate(0, 14.5px);
}
''
};
};
};

View file

@ -0,0 +1,11 @@
set -g default-terminal "tmux-256color"
# Configure the catppuccin plugin
set -g @catppuccin_flavor "mocha"
set -g @catppuccin_window_status_style "rounded"
# Make the status line pretty and add some modules
set -g status-right-length 100
set -g status-left-length 100
set -g status-left ""
set -g status-right "#{E:@catppuccin_status_application}"

View file

@ -27,10 +27,14 @@ vim.keymap.set("n", "<leader>p", "<cmd>bp<CR>")
vim.keymap.set("n", "<Esc>", "<cmd>nohlsearch<CR>")
-- Bufferline (tabs)
require("bufferline").setup{}
require("bufferline").setup {}
-- Lualine (status line)
require("lualine").setup{}
require("lualine").setup {
options = {
section_separators = { left = '', right = '' }
}
}
-- Telescope (anything search)
vim.keymap.set("n", "<leader>b", "<cmd>Telescope buffers<CR>")
@ -53,7 +57,7 @@ vim.api.nvim_create_autocmd('LspAttach', {
desc = 'LSP actions',
callback = function()
local bufmap = function(mode, lhs, rhs)
local opts = {buffer = true}
local opts = { buffer = true }
vim.keymap.set(mode, lhs, rhs, opts)
end
@ -91,4 +95,3 @@ vim.api.nvim_create_autocmd('LspAttach', {
bufmap('n', ']d', vim.diagnostic.goto_next)
end
})