regular backup

This commit is contained in:
arielherself 2024-08-15 15:35:57 +08:00
parent 54b6c52371
commit 76d0ed7b5b
Signed by: arielherself
SSH Key Fingerprint: SHA256:AK3cyo9tFsp7Mox7K0sYphleC8hReXhnRKxwuDT5LBc
3 changed files with 17 additions and 3 deletions

View File

@ -223,9 +223,10 @@ in {
pkgs.firefox-devedition
mypkgs.thorium
pkgs.wiki-tui
pkgs.asciiquarium
pkgs.starship
pkgs.asciiquarium # Interesting
pkgs.starship # Prompt bar
pkgs.patchelf
pkgs.screenkey
# My version of BerkeleyMono NF is incomplete. Should add some fallback fonts.
(pkgs.nerdfonts.override { fonts = [

2
mypkgs

@ -1 +1 @@
Subproject commit df8c7f614534d1702df2735db5d005688dd63731
Subproject commit 17af77d44389e7e74f8f82dbc920acb81990e849

View File

@ -474,6 +474,16 @@ local plugins = {
{ url = 'https://git.sr.ht/~whynothugo/lsp_lines.nvim' },
{ 'glacambre/firenvim', build = ":call firenvim#install(0)" },
{ 'nushell/tree-sitter-nu' },
{
"ibhagwan/fzf-lua",
-- optional for icon support
dependencies = { "nvim-tree/nvim-web-devicons" },
config = function()
-- calling `setup` is optional for customization
require("fzf-lua").setup({})
end
},
{ 'NStefan002/screenkey.nvim' },
}
require("lazy").setup(plugins, {})
@ -638,6 +648,9 @@ local capabilities = require('cmp_nvim_lsp').default_capabilities()
-- }
lspconfig.clangd.setup {
capabilities = capabilities,
root_dir = function(fname)
return lspconfig.util.root_pattern('compile_commands.json')(fname) or lspconfig.util.find_git_ancestor(fname) or vim.fn.getcwd()
end,
cmd = {
"clangd",
-- "--header-insertion=never"