add nvidia driver & monitors

This commit is contained in:
danny 2024-12-13 22:30:05 +08:00
parent c2f85fddb8
commit 3e6847c1ef
67 changed files with 1773 additions and 101 deletions

0
home/config/nvim/.gitignore vendored Normal file → Executable file
View file

0
home/config/nvim/.neoconf.json Normal file → Executable file
View file

0
home/config/nvim/coc-settings.json Normal file → Executable file
View file

3
home/config/nvim/init.lua Normal file → Executable file
View file

@ -1,2 +1 @@
-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")
require("config/lazy");

0
home/config/nvim/lua/config/autocmds.lua Normal file → Executable file
View file

0
home/config/nvim/lua/config/keymaps.lua Normal file → Executable file
View file

9
home/config/nvim/lua/config/lazy.lua Normal file → Executable file
View file

@ -46,7 +46,14 @@ require("lazy").setup({
{ import = "lazyvim.plugins.extras.util.project" },
{ import = "lazyvim.plugins.extras.vscode" },
-- import/override with your plugins
{ import = "plugins" },
{ import = "plugins", {
rocks = {enabled = false},
dev = {
path = "~/.local/share/nvim/nix",
fallback = false,
}
}
},
},
defaults = {
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.

0
home/config/nvim/lua/config/options.lua Normal file → Executable file
View file

0
home/config/nvim/lua/plugins/coc.lua Normal file → Executable file
View file

0
home/config/nvim/lua/plugins/colorscheme.lua Normal file → Executable file
View file

0
home/config/nvim/lua/plugins/lsp.lua Normal file → Executable file
View file

0
home/config/nvim/lua/plugins/notify.lua Normal file → Executable file
View file

0
home/config/nvim/lua/plugins/nvim-ufo.lua Normal file → Executable file
View file

View file

@ -0,0 +1,23 @@
return {
'nvim-treesitter/nvim-treesitter',
event = { "BufReadPost", "BufNewFile" },
main = "nvim-treesitter.configs",
dev = true,
opts = {
highlight = {
-- `false` will disable the whole extension
enable = true,
additional_vim_regex_highlighting = false,
},
incremental_selection = {
enable = true,
keymaps = {
init_selection = "<CR>",
node_incremental = "<CR>",
scope_incremental = "<S-CR>",
node_decremental = "<BS>",
},
},
}
}

0
home/config/nvim/lua/plugins/venv-selector.lua Normal file → Executable file
View file

0
home/config/nvim/stylua.toml Normal file → Executable file
View file