regular backup
This commit is contained in:
parent
54b6c52371
commit
76d0ed7b5b
|
@ -223,9 +223,10 @@ in {
|
||||||
pkgs.firefox-devedition
|
pkgs.firefox-devedition
|
||||||
mypkgs.thorium
|
mypkgs.thorium
|
||||||
pkgs.wiki-tui
|
pkgs.wiki-tui
|
||||||
pkgs.asciiquarium
|
pkgs.asciiquarium # Interesting
|
||||||
pkgs.starship
|
pkgs.starship # Prompt bar
|
||||||
pkgs.patchelf
|
pkgs.patchelf
|
||||||
|
pkgs.screenkey
|
||||||
|
|
||||||
# My version of BerkeleyMono NF is incomplete. Should add some fallback fonts.
|
# My version of BerkeleyMono NF is incomplete. Should add some fallback fonts.
|
||||||
(pkgs.nerdfonts.override { fonts = [
|
(pkgs.nerdfonts.override { fonts = [
|
||||||
|
|
2
mypkgs
2
mypkgs
|
@ -1 +1 @@
|
||||||
Subproject commit df8c7f614534d1702df2735db5d005688dd63731
|
Subproject commit 17af77d44389e7e74f8f82dbc920acb81990e849
|
|
@ -474,6 +474,16 @@ local plugins = {
|
||||||
{ url = 'https://git.sr.ht/~whynothugo/lsp_lines.nvim' },
|
{ url = 'https://git.sr.ht/~whynothugo/lsp_lines.nvim' },
|
||||||
{ 'glacambre/firenvim', build = ":call firenvim#install(0)" },
|
{ 'glacambre/firenvim', build = ":call firenvim#install(0)" },
|
||||||
{ 'nushell/tree-sitter-nu' },
|
{ '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, {})
|
require("lazy").setup(plugins, {})
|
||||||
|
|
||||||
|
@ -638,6 +648,9 @@ local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
||||||
-- }
|
-- }
|
||||||
lspconfig.clangd.setup {
|
lspconfig.clangd.setup {
|
||||||
capabilities = capabilities,
|
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 = {
|
cmd = {
|
||||||
"clangd",
|
"clangd",
|
||||||
-- "--header-insertion=never"
|
-- "--header-insertion=never"
|
||||||
|
|
Loading…
Reference in New Issue