Skip to content

Commit 9b228dd

Browse files
Add coverage
1 parent f2ce44d commit 9b228dd

File tree

5 files changed

+56
-10
lines changed

5 files changed

+56
-10
lines changed

btrbk/btrbk.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ volume /
1717
snapshot_dir snapshots
1818

1919
# Target for all subvolume sections:
20-
target /media/aqez/backups
20+
target /run/media/aqez/backups
2121

2222
# Some default btrfs installations (e.g. Ubuntu) use "@" for rootfs
2323
# (mounted at "/") and "@home" (mounted at "/home"). Note that this

doom/config.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
doom-theme 'doom-one
88
inhibit-startup-screen t
99
display-line-numbers-type 'relative)
10-
(let ((transparency 65))
11-
(set-frame-parameter (selected-frame) 'alpha-background 90)
12-
(add-to-list 'default-frame-alist '(alpha-background . 90)))
10+
(let ((transparency 100))
11+
(set-frame-parameter (selected-frame) 'alpha-background transparency)
12+
(add-to-list 'default-frame-alist '(alpha-background . transparency)))
1313

1414
(setq org-directory "~/org/"
1515
org-roam-directory "~/org/roam"

doom/config.org

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ clients, file templates and snippets. It is optional.
2222
doom-theme 'doom-one
2323
inhibit-startup-screen t
2424
display-line-numbers-type 'relative)
25-
(let ((transparency 65))
26-
(set-frame-parameter (selected-frame) 'alpha-background 90)
27-
(add-to-list 'default-frame-alist '(alpha-background . 90)))
25+
(let ((transparency 100))
26+
(set-frame-parameter (selected-frame) 'alpha-background transparency)
27+
(add-to-list 'default-frame-alist '(alpha-background . transparency)))
2828
#+END_SRC
2929
* Org Mode
3030
If you use `org' and don't want your org files in the default location below,

nvim/lazy-lock.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"neotest-dotnet": { "branch": "main", "commit": "03509791912eaeac9f993f7cf49e170eca06a8bc" },
2222
"nord.nvim": { "branch": "master", "commit": "80c1e5321505aeb22b7a9f23eb82f1e193c12470" },
2323
"nvim-cmp": { "branch": "main", "commit": "ae644feb7b67bf1ce4260c231d1d4300b19c6f30" },
24+
"nvim-coverage": { "branch": "main", "commit": "aa4b4400588e2259e87e372b1e4e90ae13cf5a39" },
2425
"nvim-dap": { "branch": "master", "commit": "90616ae6ae40053103dc66872886fc26b94c70c8" },
2526
"nvim-dap-go": { "branch": "main", "commit": "5511788255c92bdd845f8d9690f88e2e0f0ff9f2" },
2627
"nvim-dap-ui": { "branch": "master", "commit": "1c351e4e417d4691da12948b6ecf966936a56d28" },
@@ -33,6 +34,7 @@
3334
"nvim-web-devicons": { "branch": "master", "commit": "9154484705968658e9aab2b894d1b2a64bf9f83d" },
3435
"octo.nvim": { "branch": "master", "commit": "955f0fdd03b0da23ee1c3368d80bf806f0e36fa5" },
3536
"oil.nvim": { "branch": "master", "commit": "1360be5fda9c67338331abfcd80de2afbb395bcd" },
37+
"orgmode": { "branch": "master", "commit": "8ead368a78c7e1df0c15432dfb41d95dd4365f5c" },
3638
"overseer.nvim": { "branch": "master", "commit": "a2734d90c514eea27c4759c9f502adbcdfbce485" },
3739
"plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" },
3840
"projections.nvim": { "branch": "main", "commit": "f18a8505f84f45a0fe024cafca5b969447f63cd5" },

nvim/lua/plugins.lua

Lines changed: 47 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,25 @@ require("lazy").setup({
2424
"stevearc/overseer.nvim",
2525
opts = {}
2626
},
27+
{
28+
'nvim-orgmode/orgmode',
29+
event = 'VeryLazy',
30+
ft = { 'org' },
31+
config = function()
32+
-- Setup orgmode
33+
require('orgmode').setup({
34+
org_agenda_files = '~/repos/roam/**/*',
35+
org_default_notes_file = '~/repos/roam/refile.org',
36+
})
37+
38+
-- NOTE: If you are using nvim-treesitter with ~ensure_installed = "all"~ option
39+
-- add ~org~ to ignore_install
40+
-- require('nvim-treesitter.configs').setup({
41+
-- ensure_installed = 'all',
42+
-- ignore_install = { 'org' },
43+
-- })
44+
end,
45+
},
2746
{
2847
"gnikdroy/projections.nvim",
2948
dependencies = { "nvim-telescope/telescope.nvim" },
@@ -67,7 +86,8 @@ require("lazy").setup({
6786
vim.notify = require("notify")
6887

6988
vim.notify .setup({
70-
background_colour = "#000000"
89+
background_colour = "#000000",
90+
timeout = 500,
7191
})
7292
end
7393
},
@@ -102,6 +122,12 @@ require("lazy").setup({
102122
"stevearc/oil.nvim",
103123
config = function()
104124
require('oil').setup({
125+
columns = {
126+
"icon",
127+
"permissions",
128+
"size",
129+
"mtime"
130+
},
105131
keymaps = {
106132
["q"] = "actions.close"
107133
}
@@ -173,7 +199,18 @@ require("lazy").setup({
173199
config = function()
174200
local configs = require('nvim-treesitter.configs')
175201
configs.setup({
176-
ensure_installed = "all",
202+
ensure_installed = {
203+
"c_sharp",
204+
"javascript",
205+
"typescript",
206+
"json",
207+
"yaml",
208+
"go",
209+
"lua",
210+
"rust",
211+
"tsx",
212+
"html"
213+
},
177214
highlight = {
178215
enable = true,
179216
--additional_vim_regex_highlighting = true,
@@ -433,7 +470,7 @@ require("lazy").setup({
433470
"nvim-neotest/nvim-nio",
434471
"nvim-lua/plenary.nvim",
435472
"antoinemadec/FixCursorHold.nvim",
436-
"nvim-treesitter/nvim-treesitter"
473+
"nvim-treesitter/nvim-treesitter",
437474
},
438475
config = function()
439476
require("neotest").setup({
@@ -443,6 +480,13 @@ require("lazy").setup({
443480
})
444481
end
445482
},
483+
{
484+
"andythigpen/nvim-coverage",
485+
dependencies = { "nvim-lua/plenary.nvim" },
486+
config = function()
487+
require("coverage").setup()
488+
end
489+
},
446490
{
447491
"rcarriga/nvim-dap-ui",
448492
dependencies = { "mfussenegger/nvim-dap", "nvim-neotest/nvim-nio" },

0 commit comments

Comments
 (0)