Initial commit
This commit is contained in:
5
user/bashrc
Normal file
5
user/bashrc
Normal file
@@ -0,0 +1,5 @@
|
||||
alias ls="eza --icons"
|
||||
alias ll="ls -lga --header"
|
||||
alias tree="ls -T"
|
||||
alias cat="bat -S"
|
||||
eval "$(zoxide init --cmd cd bash)"
|
23
user/init.lua
Normal file
23
user/init.lua
Normal file
@@ -0,0 +1,23 @@
|
||||
-- deactivating netrw as it conflicts with nvim-tree
|
||||
vim.g.loaded_netrw = 1
|
||||
vim.g.loaded_netrwPlugin = 1
|
||||
|
||||
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
|
||||
if not vim.loop.fs_stat(lazypath) then
|
||||
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
|
||||
vim.fn.system{'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath}
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
require("lazy").setup {
|
||||
"xiyaowong/transparent.nvim",
|
||||
{"willothy/nvim-cokeline", dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons"
|
||||
}, config = true},
|
||||
{"nvim-tree/nvim-tree.lua", dependencies = {
|
||||
"nvim-tree/nvim-web-devicons"
|
||||
}}
|
||||
}
|
||||
|
||||
require("nvim-tree").setup()
|
6
user/setupadditions.sh
Executable file
6
user/setupadditions.sh
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
chsh /bin/bash
|
||||
cp bashrc ~/.bashrc
|
||||
mkdir -p ~/.config/nvim
|
||||
cp init.lua ~/.config/nvim/
|
Reference in New Issue
Block a user