This commit is contained in:
Kosh 2024-01-07 17:54:56 +05:30
parent 7f329e3594
commit f6a8b73162
8 changed files with 10351 additions and 8 deletions

View File

@ -138,7 +138,7 @@ gaps right 10
# Startup # Startup
exec --no-startup-id dex --autostart --environment i3 exec --no-startup-id dex --autostart --environment i3
#exec --no-startup-id nm-applet #exec --no-startup-id nm-applet
exec --no-startup-id alacritty --name notes nvim ~/.backup/notes.txt exec --no-startup-id alacritty --name notes nvim ~/back/notes.txt
exec_always --no-startup-id picom exec_always --no-startup-id picom
exec_always --no-startup-id bgchd -dir ~/.dotfiles/wallpapers/ -bcknd feh -intv 5s -rpl exec_always --no-startup-id bgchd -dir ~/.dotfiles/wallpapers/ -bcknd feh -intv 5s -rpl
exec_always --no-startup-id xinput set-prop "ELAN0710:01 04F3:30ED Touchpad" "libinput Natural Scrolling Enabled" 1 exec_always --no-startup-id xinput set-prop "ELAN0710:01 04F3:30ED Touchpad" "libinput Natural Scrolling Enabled" 1

View File

@ -11,6 +11,8 @@
"bcrypt", "bcrypt",
"favicon", "favicon",
"kosh", "kosh",
"ndarray",
"overdiscounting",
"paytmchecksum", "paytmchecksum",
"pyperclip", "pyperclip",
"transfeminism", "transfeminism",

View File

@ -27,8 +27,8 @@ set_keymap("n", "<C-k>", "<C-w>k", opts)
set_keymap("n", "<C-l>", "<C-w>l", opts) set_keymap("n", "<C-l>", "<C-w>l", opts)
-- Tabs -- Tabs
set_keymap("n", "<S-l>", ":tabn<CR>", opts) --set_keymap("n", "<S-l>", ":tabn<CR>", opts)
set_keymap("n", "<S-h>", ":tabp<CR>", opts) --set_keymap("n", "<S-h>", ":tabp<CR>", opts)
-- NOH -- NOH
set_keymap("n", "<leader>n", ":noh<CR>", opts) set_keymap("n", "<leader>n", ":noh<CR>", opts)
@ -39,9 +39,8 @@ vim.keymap.set('n', '<leader>ff', builtin.find_files, {})
vim.keymap.set('n', '<leader>fb', builtin.buffers, {}) vim.keymap.set('n', '<leader>fb', builtin.buffers, {})
-- Buffers -- Buffers
set_keymap("n", "<leader>bn", ":bnext<CR>", opts) set_keymap("n", "<S-l>", ":bnext<CR>", opts)
set_keymap("n", "<leader>bp", ":bprev<CR>", opts) set_keymap("n", "<S-h>", ":bprev<CR>", opts)
set_keymap("n", "<leader>bd", ":bq<CR>", opts)
-- Folds -- Folds
set_keymap("n", "<leader>zo", "zo", opts) set_keymap("n", "<leader>zo", "zo", opts)

View File

@ -1,6 +1,7 @@
-- Numbers -- Numbers
vim.opt.relativenumber = true -- Relative numbers vim.opt.relativenumber = true -- Relative numbers
vim.opt.number = true -- Normal numbers vim.opt.number = true -- Normal numbers
vim.opt.scrolloff = 9999
-- Tabs -- Tabs
vim.opt.tabstop = 4 vim.opt.tabstop = 4

View File

@ -43,5 +43,17 @@ return require("packer").startup(function(use)
} }
use {'akinsho/bufferline.nvim', tag = "*", requires = 'nvim-tree/nvim-web-devicons'} use {'akinsho/bufferline.nvim', tag = "*", requires = 'nvim-tree/nvim-web-devicons'}
use {"nvim-tree/nvim-web-devicons"} use {"nvim-tree/nvim-web-devicons"}
use "tpope/vim-surround"
use "terrastruct/d2-vim"
use({
"WilsonOh/emoji_picker-nvim",
config = function()
require("emoji_picker").setup()
end,
})
use "adelarsq/vim-devicons-emoji"
end) end)

View File

@ -49,8 +49,8 @@ local function save_profiles(threshold)
end end
time([[Luarocks path setup]], true) time([[Luarocks path setup]], true)
local package_path_str = "/home/kosh/.cache/nvim/packer_hererocks/2.1.1697887905/share/lua/5.1/?.lua;/home/kosh/.cache/nvim/packer_hererocks/2.1.1697887905/share/lua/5.1/?/init.lua;/home/kosh/.cache/nvim/packer_hererocks/2.1.1697887905/lib/luarocks/rocks-5.1/?.lua;/home/kosh/.cache/nvim/packer_hererocks/2.1.1697887905/lib/luarocks/rocks-5.1/?/init.lua" local package_path_str = "/home/kosh/.cache/nvim/packer_hererocks/2.1.1702233742/share/lua/5.1/?.lua;/home/kosh/.cache/nvim/packer_hererocks/2.1.1702233742/share/lua/5.1/?/init.lua;/home/kosh/.cache/nvim/packer_hererocks/2.1.1702233742/lib/luarocks/rocks-5.1/?.lua;/home/kosh/.cache/nvim/packer_hererocks/2.1.1702233742/lib/luarocks/rocks-5.1/?/init.lua"
local install_cpath_pattern = "/home/kosh/.cache/nvim/packer_hererocks/2.1.1697887905/lib/lua/5.1/?.so" local install_cpath_pattern = "/home/kosh/.cache/nvim/packer_hererocks/2.1.1702233742/lib/lua/5.1/?.so"
if not string.find(package.path, package_path_str, 1, true) then if not string.find(package.path, package_path_str, 1, true) then
package.path = package.path .. ';' .. package_path_str package.path = package.path .. ';' .. package_path_str
end end
@ -94,6 +94,17 @@ _G.packer_plugins = {
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/coc.nvim", path = "/home/kosh/.local/share/nvim/site/pack/packer/start/coc.nvim",
url = "https://github.com/neoclide/coc.nvim" url = "https://github.com/neoclide/coc.nvim"
}, },
["d2-vim"] = {
loaded = true,
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/d2-vim",
url = "https://github.com/terrastruct/d2-vim"
},
["emoji_picker-nvim"] = {
config = { "\27LJ\2\n:\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\17emoji_picker\frequire\0" },
loaded = true,
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/emoji_picker-nvim",
url = "https://github.com/WilsonOh/emoji_picker-nvim"
},
["fine-cmdline.nvim"] = { ["fine-cmdline.nvim"] = {
loaded = true, loaded = true,
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/fine-cmdline.nvim", path = "/home/kosh/.local/share/nvim/site/pack/packer/start/fine-cmdline.nvim",
@ -154,14 +165,28 @@ _G.packer_plugins = {
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/telescope.nvim", path = "/home/kosh/.local/share/nvim/site/pack/packer/start/telescope.nvim",
url = "https://github.com/nvim-telescope/telescope.nvim" url = "https://github.com/nvim-telescope/telescope.nvim"
}, },
["vim-devicons-emoji"] = {
loaded = true,
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/vim-devicons-emoji",
url = "https://github.com/adelarsq/vim-devicons-emoji"
},
["vim-godot"] = { ["vim-godot"] = {
loaded = true, loaded = true,
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/vim-godot", path = "/home/kosh/.local/share/nvim/site/pack/packer/start/vim-godot",
url = "https://github.com/habamax/vim-godot" url = "https://github.com/habamax/vim-godot"
},
["vim-surround"] = {
loaded = true,
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/vim-surround",
url = "https://github.com/tpope/vim-surround"
} }
} }
time([[Defining packer_plugins]], false) time([[Defining packer_plugins]], false)
-- Config for: emoji_picker-nvim
time([[Config for emoji_picker-nvim]], true)
try_loadstring("\27LJ\2\n:\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\17emoji_picker\frequire\0", "config", "emoji_picker-nvim")
time([[Config for emoji_picker-nvim]], false)
_G._packer.inside_compile = false _G._packer.inside_compile = false
if _G._packer.needs_bufread == true then if _G._packer.needs_bufread == true then

10304
priv/.zsh_history Normal file

File diff suppressed because it is too large Load Diff

BIN
priv/priv Normal file

Binary file not shown.