new dwl and some new stuff

This commit is contained in:
Zhongheng Liu 2025-10-13 13:22:48 +02:00
commit 051fa56df0
6 changed files with 2094 additions and 3 deletions

5
neovim/Makefile Normal file
View file

@ -0,0 +1,5 @@
build:
mkdir -p $(HOME)/.config/nvim/
cp ./init.lua $(HOME)/.config/nvim/init.lua
cp -r ./syntax $(HOME)/.config/nvim/
cp -r ./ftdetect $(HOME)/.config/nvim/

1
neovim/ftdetect/gas.vim Normal file
View file

@ -0,0 +1 @@
au BufRead,BufNewFile *.s,*.asm set filetype=gas

11
neovim/init.lua Normal file
View file

@ -0,0 +1,11 @@
vim.opt.number = true
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.cmd [[
highlight Normal guibg=none
highlight NonText guibg=none
highlight Normal ctermbg=none
highlight NonText ctermbg=none
]]

2069
neovim/syntax/gas.vim Normal file

File diff suppressed because it is too large Load diff