Skip to content

Instantly share code, notes, and snippets.

View devyassineh's full-sized avatar

yh devyassineh

View GitHub Profile
@devyassineh
devyassineh / init.lua
Last active December 8, 2024 18:50
neovim setup for termux
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
vim.opt.relativenumber = true
vim.o.number = true
vim.opt.mouse = 'a'
vim.schedule(function()
vim.opt.clipboard = 'unnamedplus'
end)
vim.opt.cursorline = true
vim.o.foldmethod = "expr"
@devyassineh
devyassineh / init.lua
Last active January 10, 2025 22:39
minimal setup
-- ui
vim.o.laststatus = 0
vim.o.cursorline = true
vim.o.confirm = true
vim.o.number = true
vim.o.relativenumber = true
vim.api.nvim_set_hl(0, "WinSeparator", {fg='NvimDarkGrey2'})
-- completion
vim.o.completeopt = "menu,menuone,noinsert,popup,fuzzy"