Update from lat

This commit is contained in:
2024-02-26 12:55:42 +05:30
parent d7e49b646c
commit f9dcbb2736
4 changed files with 14 additions and 2 deletions
@@ -1,6 +1,7 @@
#!/usr/bin/env bash
export HISTSIZE=10000
export HISTFILE=$PWD/.bash_history
export HISTCONTROL=erasedups
if [[ $1 == '-n' ]]; then
konsole &
+2 -1
View File
@@ -1,2 +1,3 @@
#!/usr/bin/env bash
/usr/bin/chromium-browser --password-store=kwallet5 --force-device-scale-factor=1.25 "$@"
# --force-device-scale-factor=1.25
/usr/bin/chromium-browser --password-store=kwallet5 "$@"
@@ -22,7 +22,7 @@ lvim.format_on_save = {
lvim.leader = "space"
-- add your own keymapping
lvim.keys.normal_mode["<C-s>"] = ":w<cr>"
lvim.keys.normal_mode['<C-p>'] = ":Telescope find_files<CR>"
lvim.keys.normal_mode['<C-p>'] = ":Telescope fd<CR>"
-- lvim.keys.normal_mode["<S-l>"] = ":BufferLineCycleNext<CR>"
-- lvim.keys.normal_mode["<S-h>"] = ":BufferLineCyclePrev<CR>"
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
THIS_DIR=$(dirname $(readlink -f $0))
export NVIM_APPNAME="lvim"
export LUNARVIM_RUNTIME_DIR="$THIS_DIR/lunarvim/share/lvim"
export LUNARVIM_CONFIG_DIR="$THIS_DIR/lunarvim/nvim"
export LUNARVIM_CACHE_DIR="$THIS_DIR/lunarvim/cache"
export LUNARVIM_BASE_DIR="$THIS_DIR/lunarvim/LunarVim"
nvim -u "$LUNARVIM_BASE_DIR/init.lua" "$@"