2025 refresh
This commit is contained in:
24
android/.config/nvim/init.lua
Normal file
24
android/.config/nvim/init.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
vim.g.mapleader = ' '
|
||||
vim.o.wrap = true
|
||||
vim.g.maplocalleader = ' '
|
||||
vim.o.number = true
|
||||
vim.o.relativenumber = true
|
||||
vim.o.mouse = 'a'
|
||||
vim.schedule(function()
|
||||
vim.o.clipboard = 'unnamedplus'
|
||||
|
||||
end )
|
||||
vim.o.breakindent = true
|
||||
vim.o.undofile = true
|
||||
vim.o.ignorecase = true
|
||||
vim.o.smartcase = true
|
||||
vim.o.signcolumn = 'yes'
|
||||
vim.o.splitright = true
|
||||
vim.o.splitbelow = true
|
||||
vim.olist = true
|
||||
vim.o.inccommand = 'split'
|
||||
vim.o.scrolloff = 10
|
||||
vim.o.autoindent = true
|
||||
vim.o.hlsearch = true
|
||||
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
|
||||
|
||||
93
android/.config/termux/termux.properties
Normal file
93
android/.config/termux/termux.properties
Normal file
@@ -0,0 +1,93 @@
|
||||
### This is a `.properties` [https://en.wikipedia.org/wiki/.properties] file
|
||||
### for termux app properties and is loaded with the `java.util.Properties.load()`
|
||||
### [https://developer.android.com/reference/java/util/Properties#load(java.io.Reader)]
|
||||
### call by the termux app and must be formatted as per its spec.
|
||||
### To make changes to a property value, uncomment the property line by removing
|
||||
### any hash `#` characters at the start of the line.
|
||||
### After making required changes, save the file and run `termux-reload-settings`
|
||||
### in the terminal for changes to take effect. Some properties require app
|
||||
### process to be restarted to be updated which can be done by force stopping
|
||||
### the app from Android app settings.
|
||||
### All information here can also be found on the
|
||||
### wiki: https://wiki.termux.com/wiki/Terminal_Settings
|
||||
|
||||
###############
|
||||
# Extra keys
|
||||
###############
|
||||
|
||||
### Settings for choosing which set of symbols to use for illustrating keys.
|
||||
### Choose between default, arrows-only, arrows-all, all and none
|
||||
# extra-keys-style = default
|
||||
|
||||
### Force capitalize all text in extra keys row button labels.
|
||||
# extra-keys-text-all-caps = true
|
||||
|
||||
### Default extra-key configuration
|
||||
# extra-keys = [[ESC, TAB, CTRL, ALT, {key: '-', popup: '|'}, DOWN, UP]]
|
||||
|
||||
### Two rows with more keys
|
||||
# extra-keys = [['ESC','/','-','HOME','UP','END','PGUP'], \
|
||||
# ['TAB','CTRL','ALT','LEFT','DOWN','RIGHT','PGDN']]
|
||||
|
||||
### Configuration with additional popup keys (swipe up from an extra key)
|
||||
# extra-keys = [[ \
|
||||
# {key: ESC, popup: {macro: "CTRL f d", display: "tmux exit"}}, \
|
||||
# {key: CTRL, popup: {macro: "CTRL f BKSP", display: "tmux ←"}}, \
|
||||
# {key: ALT, popup: {macro: "CTRL f TAB", display: "tmux →"}}, \
|
||||
# {key: TAB, popup: {macro: "ALT a", display: A-a}}, \
|
||||
# {key: LEFT, popup: HOME}, \
|
||||
# {key: DOWN, popup: PGDN}, \
|
||||
# {key: UP, popup: PGUP}, \
|
||||
# {key: RIGHT, popup: END}, \
|
||||
# {macro: "ALT j", display: A-j, popup: {macro: "ALT g", display: A-g}}, \
|
||||
# {key: KEYBOARD, popup: {macro: "CTRL d", display: exit}} \
|
||||
# ]]
|
||||
|
||||
### Another configuration with advanced popup key usage designed for more
|
||||
### specific use-cases. In this case, it is designed for working with Vim-like
|
||||
### editors for faster navigation
|
||||
#extra-keys = [ \
|
||||
# [ \
|
||||
# { key: ESC, popup: { macro: ":q\n", display: "QuickExit" } }, \
|
||||
# { key: '/', popup: '\\\\' }, \
|
||||
# { key: '-', popup: '_' }, \
|
||||
# { key: HOME, popup: { macro: "CTRL HOME", display: "Top" } }, \
|
||||
# { key: UP, popup: { macro: "CTRL UP", display: "UP" } }, \
|
||||
# { key: END, popup: { macro: "CTRL END", display: "End" } }, \
|
||||
# { key: ":", popup: ";" }, \
|
||||
# { key: "(", popup: "{" } \
|
||||
# ], \
|
||||
# [ \
|
||||
# { key: TAB, popup: { macro: ":wq\n", display: "Write And Exit" } }, \
|
||||
# { key: CTRL, popup: { macro: ":w\n", display: "Write" } }, \
|
||||
# ALT, \
|
||||
# { key: LEFT, popup: { macro: "CTRL LEFT", display: "Left" } }, \
|
||||
# { key: DOWN, popup: { macro: "CTRL DOWN", display: "Bottom" } }, \
|
||||
# { key: RIGHT, popup: { macro: "CTRL RIGHT", display: "Right" } }, \
|
||||
# { key: "#", popup: "$" }, \
|
||||
# { key: ")", popup: "}" } \
|
||||
# ] \
|
||||
#]
|
||||
|
||||
###############
|
||||
# Bell key
|
||||
###############
|
||||
|
||||
### Vibrate device (default).
|
||||
# bell-character = vibrate
|
||||
|
||||
### Beep with a sound.
|
||||
# bell-character = beep
|
||||
|
||||
### Ignore bell character.
|
||||
# bell-character = ignore
|
||||
|
||||
###############
|
||||
# Back key
|
||||
###############
|
||||
|
||||
### Send the Escape key.
|
||||
# back-key=escape
|
||||
|
||||
### Hide keyboard or leave app (default).
|
||||
# back-key=back
|
||||
Reference in New Issue
Block a user