Skip to content

Commit db3beb3

Browse files
committed
chore: tweaks
1 parent 6567f97 commit db3beb3

File tree

6 files changed

+25
-29
lines changed

6 files changed

+25
-29
lines changed

nix/TODO.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22

33
- bat theme
44
- dynamic theme https://x.com/mitchellh/status/1859725298360889539
5+
https://github.com/raindev/daybreak.nvim

nix/modules/colors.nix

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
dark = {
3-
background = "#1A1A19";
3+
background = "#0f0f0e";
44
foreground = "#ffffff";
55
cursor = "#F76EC9";
66

@@ -16,18 +16,18 @@
1616
};
1717

1818
bright = {
19-
background = "#FDFCF7";
19+
background = "#fdfdfc";
2020
foreground = "#000000";
2121
cursor = "#F76EC9";
2222

2323
black = "#000000";
24-
blue = "#0026FF";
25-
cyan = "#87FFC1";
26-
green = "#DFFF9E";
24+
blue = "#5454a6";
25+
cyan = "#85ffbc";
26+
green = "#00662d";
2727
magenta = "#FF00FF";
28-
orange = "#F0BC91";
28+
orange = "#e6b594";
2929
red = "#990000";
3030
white = "#FDFCF7";
31-
yellow = "#FFFF00";
31+
yellow = "#ffff00";
3232
};
3333
}

nix/modules/home-manager.nix

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ in
9292
macos-titlebar-style = "tabs";
9393
mouse-hide-while-typing = true;
9494
shell-integration-features = "no-cursor";
95-
theme = "tmm-dark";
95+
theme = "light:tmm-bright,dark:tmm-dark";
9696
unfocused-split-opacity = 1;
9797
window-height = 50;
9898
window-padding-balance = true;
@@ -118,6 +118,21 @@ in
118118
"7=${colors.dark.white}"
119119
];
120120
};
121+
tmm-bright = {
122+
background = colors.bright.background;
123+
cursor-color = colors.bright.cursor;
124+
foreground = colors.bright.foreground;
125+
palette = [
126+
"0=${colors.bright.black}"
127+
"1=${colors.bright.red}"
128+
"2=${colors.bright.green}"
129+
"3=${colors.bright.yellow}"
130+
"4=${colors.bright.blue}"
131+
"5=${colors.bright.orange}"
132+
"6=${colors.bright.cyan}"
133+
"7=${colors.bright.white}"
134+
];
135+
};
121136
};
122137
};
123138
programs.home-manager.enable = true;

nix/modules/shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
hide = "defaults write com.apple.finder AppleShowAllFiles -bool false && killall Finder";
7070
show = "defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder";
7171

72-
drs = "darwin-rebuild switch --flake $DOTFILES_HOME/nix";
72+
drs = "sudo darwin-rebuild switch --flake $DOTFILES_HOME/nix";
7373
dot = "pushd . && cd $DOTFILES_HOME && nvim";
7474

7575
hidedesktop = "defaults write com.apple.finder CreateDesktop -bool false && killall Finder";

nvim/TODO.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ lazy c20c4022958780617424a090eee2360d560eb939
55
## Plugins
66

77
- https://github.com/nvim-treesitter/nvim-treesitter-textobjects
8-
- https://github.com/mfussenegger/nvim-lint
98

109
## Misc
1110

nvim/lua/util/format.lua

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -135,26 +135,7 @@ function M.format(opts)
135135
end
136136
end
137137

138-
-- function M.health()
139-
-- local Config = require("lazy.core.config")
140-
-- local has_plugin = Config.spec.plugins["none-ls.nvim"]
141-
-- local has_extra = vim.tbl_contains(Config.spec.modules, "lazyvim.plugins.extras.lsp.none-ls")
142-
-- if has_plugin and not has_extra then
143-
-- require("util.init").warn({
144-
-- "`conform.nvim` and `nvim-lint` are now the default formatters and linters in LazyVim.",
145-
-- "",
146-
-- "You can use those plugins together with `none-ls.nvim`,",
147-
-- "but you need to enable the `lazyvim.plugins.extras.lsp.none-ls` extra,",
148-
-- "for formatting to work correctly.",
149-
-- "",
150-
-- "In case you no longer want to use `none-ls.nvim`, just remove the spec from your config.",
151-
-- })
152-
-- end
153-
-- end
154-
155138
function M.setup()
156-
-- M.health()
157-
158139
-- Autoformat autocmd
159140
vim.api.nvim_create_autocmd("BufWritePre", {
160141
group = vim.api.nvim_create_augroup("TmmFormat", {}),

0 commit comments

Comments
 (0)