Skip to content

Commit

Permalink
ca-dir issue
Browse files Browse the repository at this point in the history
  • Loading branch information
BSathvik committed Mar 13, 2024
1 parent 61d919c commit 4f664ac
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions home/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,14 @@ in
yq
tailspin
tmux-xpanes
easyrsa
podman
qemu#required for podman
;

# Kensho stuff
inherit (pkgs)
awscli
aws-iam-authenticator
go-jsonnet#ships with jsonnetfmt (issue with `jsonnet` build)
jrsonnet# is _blazingling_ fast
Expand Down
14 changes: 14 additions & 0 deletions nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,16 @@ require("lazy").setup({
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" },

-- Aesthetics
{
"shortcuts/no-neck-pain.nvim",
version = "*",
config = function()
require("no-neck-pain").setup({
width = 110,
})
end,
},

{
"projekt0n/github-nvim-theme",
config = function()
Expand Down Expand Up @@ -336,6 +346,9 @@ require("lazy").setup({
rust = {
require("formatter.filetypes.rust").rustfmt,
},
html = {
require("formatter.filetypes.html").prettier,
},
python = {
function()
return {
Expand Down Expand Up @@ -627,6 +640,7 @@ vim.keymap.set({ "n", "v" }, "<leader>", "<Nop>", { silent = true })

-- Save file
vim.keymap.set("n", "<C-s>", ":write<CR>", { noremap = true, silent = true })
vim.keymap.set("i", "<C-s>", "<cmd>write<CR><esc>", { silent = true })

-- Remap for dealing with word wrap
vim.keymap.set("n", "k", "v:count == 0 ? 'gk' : 'k'", { expr = true, silent = true })
Expand Down

0 comments on commit 4f664ac

Please sign in to comment.