@heyitsiveen/dotfiles 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +176 -0
  3. package/dist/index.mjs +1445 -0
  4. package/dotfiles/macos/.claude/CLAUDE.md +13 -0
  5. package/dotfiles/macos/.claude/settings.json +38 -0
  6. package/dotfiles/macos/.claude.json +32 -0
  7. package/dotfiles/macos/.config/bat/config +27 -0
  8. package/dotfiles/macos/.config/bat/themes/Vercel.tmTheme +308 -0
  9. package/dotfiles/macos/.config/bat/themes/Vesper.tmTheme +357 -0
  10. package/dotfiles/macos/.config/btop/btop.conf +272 -0
  11. package/dotfiles/macos/.config/btop/themes/Solarized_Dark.theme +89 -0
  12. package/dotfiles/macos/.config/btop/themes/Vercel.theme +89 -0
  13. package/dotfiles/macos/.config/btop/themes/Vesper.theme +89 -0
  14. package/dotfiles/macos/.config/fish/conf.d/00-platform.fish +19 -0
  15. package/dotfiles/macos/.config/fish/conf.d/10-homebrew.fish +33 -0
  16. package/dotfiles/macos/.config/fish/conf.d/20-environment.fish +12 -0
  17. package/dotfiles/macos/.config/fish/conf.d/30-aliases.fish +52 -0
  18. package/dotfiles/macos/.config/fish/conf.d/40-fzf.fish +120 -0
  19. package/dotfiles/macos/.config/fish/conf.d/50-tools.fish +51 -0
  20. package/dotfiles/macos/.config/fish/conf.d/60-tmux.fish +19 -0
  21. package/dotfiles/macos/.config/fish/conf.d/70-tide.fish +31 -0
  22. package/dotfiles/macos/.config/fish/config.fish +30 -0
  23. package/dotfiles/macos/.config/fish/functions/_tide_palette_heyitsiveen.fish +101 -0
  24. package/dotfiles/macos/.config/fish/functions/_tide_palette_vercel.fish +94 -0
  25. package/dotfiles/macos/.config/fish/functions/_tide_palette_vesper.fish +100 -0
  26. package/dotfiles/macos/.config/fish/functions/backup.fish +43 -0
  27. package/dotfiles/macos/.config/fish/functions/fish_greeting.fish +5 -0
  28. package/dotfiles/macos/.config/fish/functions/reload-fish.fish +4 -0
  29. package/dotfiles/macos/.config/fish/functions/tide_palette.fish +21 -0
  30. package/dotfiles/macos/.config/ghostty/config +46 -0
  31. package/dotfiles/macos/.config/nvim/.neoconf.json +15 -0
  32. package/dotfiles/macos/.config/nvim/init.lua +2 -0
  33. package/dotfiles/macos/.config/nvim/lazy-lock.json +42 -0
  34. package/dotfiles/macos/.config/nvim/lazyvim.json +11 -0
  35. package/dotfiles/macos/.config/nvim/lua/config/autocmds.lua +8 -0
  36. package/dotfiles/macos/.config/nvim/lua/config/keymaps.lua +21 -0
  37. package/dotfiles/macos/.config/nvim/lua/config/lazy.lua +72 -0
  38. package/dotfiles/macos/.config/nvim/lua/config/options.lua +13 -0
  39. package/dotfiles/macos/.config/nvim/lua/plugins/colorscheme.lua +12 -0
  40. package/dotfiles/macos/.config/nvim/lua/plugins/editor.lua +366 -0
  41. package/dotfiles/macos/.config/nvim/lua/plugins/example.lua +197 -0
  42. package/dotfiles/macos/.config/nvim/lua/plugins/mason.lua +11 -0
  43. package/dotfiles/macos/.config/nvim/lua/plugins/oxc.lua +64 -0
  44. package/dotfiles/macos/.config/nvim/lua/plugins/ui.lua +123 -0
  45. package/dotfiles/macos/.config/nvim/stylua.toml +3 -0
  46. package/dotfiles/macos/.config/ripgrep/config +9 -0
  47. package/dotfiles/macos/.config/tmux/STATUSBAR REFERENCE.md +1183 -0
  48. package/dotfiles/macos/.config/tmux/keybinds.conf +124 -0
  49. package/dotfiles/macos/.config/tmux/notifications.conf +39 -0
  50. package/dotfiles/macos/.config/tmux/pane.conf +33 -0
  51. package/dotfiles/macos/.config/tmux/popup-window.conf +27 -0
  52. package/dotfiles/macos/.config/tmux/statusbar.conf +281 -0
  53. package/dotfiles/macos/.config/tmux/tmux.conf +94 -0
  54. package/dotfiles/macos/.config/wezterm/wezterm.lua +143 -0
  55. package/dotfiles/windows/.claude/CLAUDE.md +13 -0
  56. package/dotfiles/windows/.claude/settings.json +38 -0
  57. package/dotfiles/windows/.claude.json +32 -0
  58. package/dotfiles/windows/.config/bat/config +27 -0
  59. package/dotfiles/windows/.config/bat/themes/Vercel.tmTheme +308 -0
  60. package/dotfiles/windows/.config/bat/themes/Vesper.tmTheme +357 -0
  61. package/dotfiles/windows/.config/btop/btop.conf +251 -0
  62. package/dotfiles/windows/.config/btop/themes/Solarized_Dark.theme +89 -0
  63. package/dotfiles/windows/.config/btop/themes/Vercel.theme +89 -0
  64. package/dotfiles/windows/.config/btop/themes/Vesper.theme +89 -0
  65. package/dotfiles/windows/.config/nvim/.neoconf.json +15 -0
  66. package/dotfiles/windows/.config/nvim/init.lua +2 -0
  67. package/dotfiles/windows/.config/nvim/lazy-lock.json +42 -0
  68. package/dotfiles/windows/.config/nvim/lazyvim.json +11 -0
  69. package/dotfiles/windows/.config/nvim/lua/config/autocmds.lua +8 -0
  70. package/dotfiles/windows/.config/nvim/lua/config/keymaps.lua +21 -0
  71. package/dotfiles/windows/.config/nvim/lua/config/lazy.lua +72 -0
  72. package/dotfiles/windows/.config/nvim/lua/config/options.lua +13 -0
  73. package/dotfiles/windows/.config/nvim/lua/plugins/colorscheme.lua +12 -0
  74. package/dotfiles/windows/.config/nvim/lua/plugins/editor.lua +366 -0
  75. package/dotfiles/windows/.config/nvim/lua/plugins/example.lua +197 -0
  76. package/dotfiles/windows/.config/nvim/lua/plugins/mason.lua +11 -0
  77. package/dotfiles/windows/.config/nvim/lua/plugins/oxc.lua +64 -0
  78. package/dotfiles/windows/.config/nvim/lua/plugins/ui.lua +123 -0
  79. package/dotfiles/windows/.config/nvim/stylua.toml +3 -0
  80. package/dotfiles/windows/.config/omp-themes/solarized-dark.omp.toml +197 -0
  81. package/dotfiles/windows/.config/omp-themes/vercel.omp.toml +197 -0
  82. package/dotfiles/windows/.config/omp-themes/vesper.omp.toml +197 -0
  83. package/dotfiles/windows/.config/ripgrep/config +9 -0
  84. package/dotfiles/windows/.config/wezterm/wezterm.lua +88 -0
  85. package/dotfiles/windows/powershell/Profile.ps1 +36 -0
  86. package/dotfiles/windows/powershell/functions/Switch-PromptPalette.ps1 +37 -0
  87. package/dotfiles/windows/powershell/functions/backup.ps1 +39 -0
  88. package/dotfiles/windows/powershell/functions/reload-shell.ps1 +8 -0
  89. package/dotfiles/windows/powershell/modules/aliases.ps1 +44 -0
  90. package/dotfiles/windows/powershell/modules/environment.ps1 +13 -0
  91. package/dotfiles/windows/powershell/modules/fzf.ps1 +82 -0
  92. package/dotfiles/windows/powershell/modules/prompt.ps1 +25 -0
  93. package/dotfiles/windows/powershell/modules/tools.ps1 +52 -0
  94. package/package.json +72 -0
@@ -0,0 +1,123 @@
1
+ return {
2
+ -- messages, cmdline and the popupmenu
3
+ {
4
+ "folke/noice.nvim",
5
+ opts = function(_, opts)
6
+ table.insert(opts.routes, {
7
+ filter = {
8
+ event = "notify",
9
+ find = "No information available",
10
+ },
11
+ opts = { skip = true },
12
+ })
13
+ local focused = true
14
+ vim.api.nvim_create_autocmd("FocusGained", {
15
+ callback = function()
16
+ focused = true
17
+ end,
18
+ })
19
+ vim.api.nvim_create_autocmd("FocusLost", {
20
+ callback = function()
21
+ focused = false
22
+ end,
23
+ })
24
+ table.insert(opts.routes, 1, {
25
+ filter = {
26
+ cond = function()
27
+ return not focused
28
+ end,
29
+ },
30
+ view = "notify_send",
31
+ opts = { stop = false },
32
+ })
33
+
34
+ opts.commands = {
35
+ all = {
36
+ -- options for the message history that you get with `:Noice`
37
+ view = "split",
38
+ opts = { enter = true, format = "details" },
39
+ filter = {},
40
+ },
41
+ }
42
+
43
+ vim.api.nvim_create_autocmd("FileType", {
44
+ pattern = "markdown",
45
+ callback = function(event)
46
+ vim.schedule(function()
47
+ require("noice.text.markdown").keys(event.buf)
48
+ end)
49
+ end,
50
+ })
51
+
52
+ opts.presets.lsp_doc_border = true
53
+ end,
54
+ },
55
+
56
+ -- buffer line
57
+ {
58
+ "akinsho/bufferline.nvim",
59
+ event = "VeryLazy",
60
+ keys = {
61
+ { "<Tab>", "<Cmd>BufferLineCycleNext<CR>", desc = "Next tab" },
62
+ { "<S-Tab>", "<Cmd>BufferLineCyclePrev<CR>", desc = "Prev tab" },
63
+ },
64
+ opts = {
65
+ options = {
66
+ mode = "tabs",
67
+ -- separator_style = "slant",
68
+ show_buffer_close_icons = false,
69
+ show_close_icon = false,
70
+ },
71
+ },
72
+ },
73
+
74
+ -- filename
75
+ {
76
+ "b0o/incline.nvim",
77
+ dependencies = { "craftzdog/solarized-osaka.nvim" },
78
+ event = "BufReadPre",
79
+ priority = 1200,
80
+ config = function()
81
+ local colors = require("solarized-osaka.colors").setup()
82
+ require("incline").setup({
83
+ highlight = {
84
+ groups = {
85
+ InclineNormal = { guibg = colors.magenta500, guifg = colors.base04 },
86
+ InclineNormalNC = { guifg = colors.violet500, guibg = colors.base03 },
87
+ },
88
+ },
89
+ window = { margin = { vertical = 0, horizontal = 1 } },
90
+ hide = {
91
+ cursorline = true,
92
+ },
93
+ render = function(props)
94
+ local filename = vim.fn.fnamemodify(vim.api.nvim_buf_get_name(props.buf), ":t")
95
+ if vim.bo[props.buf].modified then
96
+ filename = "[+] " .. filename
97
+ end
98
+
99
+ local icon, color = require("nvim-web-devicons").get_icon_color(filename)
100
+ return { { icon, guifg = color }, { " " }, { filename } }
101
+ end,
102
+ })
103
+ end,
104
+ },
105
+
106
+ {
107
+ "folke/snacks.nvim",
108
+ opts = {
109
+ dashboard = {
110
+ preset = {
111
+ header = [[
112
+ ██╗ ██╗███████╗██╗ ██╗██╗████████╗███████╗██╗██╗ ██╗███████╗███████╗███╗ ██╗
113
+ ██║ ██║██╔════╝╚██╗ ██╔╝██║╚══██╔══╝██╔════╝██║██║ ██║██╔════╝██╔════╝████╗ ██║
114
+ ███████║█████╗ ╚████╔╝ ██║ ██║ ███████╗██║██║ ██║█████╗ █████╗ ██╔██╗ ██║
115
+ ██╔══██║██╔══╝ ╚██╔╝ ██║ ██║ ╚════██║██║╚██╗ ██╔╝██╔══╝ ██╔══╝ ██║╚██╗██║
116
+ ██║ ██║███████╗ ██║ ██║ ██║ ███████║██║ ╚████╔╝ ███████╗███████╗██║ ╚████║
117
+ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚══════╝╚══════╝╚═╝ ╚═══╝
118
+ ]],
119
+ },
120
+ },
121
+ },
122
+ },
123
+ }
@@ -0,0 +1,3 @@
1
+ indent_type = "Spaces"
2
+ indent_width = 2
3
+ column_width = 120
@@ -0,0 +1,9 @@
1
+ # ~/.config/ripgrep/config
2
+ # One option per line.
3
+
4
+ --smart-case
5
+ --hidden
6
+ --glob=!.git/
7
+ --glob=!node_modules/
8
+ --glob=!dist/
9
+ --glob=!build/