File tree Expand file tree Collapse file tree 6 files changed +25
-29
lines changed
Expand file tree Collapse file tree 6 files changed +25
-29
lines changed Original file line number Diff line number Diff line change 22
33- bat theme
44- dynamic theme https://x.com/mitchellh/status/1859725298360889539
5+ https://github.com/raindev/daybreak.nvim
Original file line number Diff line number Diff line change 11{
22 dark = {
3- background = "#1A1A19 " ;
3+ background = "#0f0f0e " ;
44 foreground = "#ffffff" ;
55 cursor = "#F76EC9" ;
66
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}
Original file line number Diff line number Diff line change 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 ;
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 ;
Original file line number Diff line number Diff line change 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" ;
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -135,26 +135,7 @@ function M.format(opts)
135135 end
136136end
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-
155138function M .setup ()
156- -- M.health()
157-
158139 -- Autoformat autocmd
159140 vim .api .nvim_create_autocmd (" BufWritePre" , {
160141 group = vim .api .nvim_create_augroup (" TmmFormat" , {}),
You can’t perform that action at this time.
0 commit comments