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/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