Made it look a bit better
This commit is contained in:
parent
959ca1a25c
commit
3bbf1c7eb0
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
nvim/plugin/packer_compiled.lua
|
11
i3/config
11
i3/config
@ -44,6 +44,8 @@ bindsym $mod+7 workspace number $ws7
|
|||||||
bindsym $mod+8 workspace number $ws8
|
bindsym $mod+8 workspace number $ws8
|
||||||
bindsym $mod+9 workspace number $porn
|
bindsym $mod+9 workspace number $porn
|
||||||
bindsym $mod+0 workspace number $social
|
bindsym $mod+0 workspace number $social
|
||||||
|
bindsym $mod+ctrl+l workspace next
|
||||||
|
bindsym $mod+ctrl+h workspace prev
|
||||||
|
|
||||||
# Move container to workspace keybinds
|
# Move container to workspace keybinds
|
||||||
bindsym $mod+Shift+1 move container to workspace number $terminal
|
bindsym $mod+Shift+1 move container to workspace number $terminal
|
||||||
@ -97,8 +99,8 @@ bindsym $mod+Shift+k move up
|
|||||||
bindsym $mod+Shift+l move right
|
bindsym $mod+Shift+l move right
|
||||||
|
|
||||||
# Split orientation keybinds
|
# Split orientation keybinds
|
||||||
bindsym $mod+ctrl+h split h
|
bindsym $mod+ctrl+Shift+h split h
|
||||||
bindsym $mod+ctrl+v split v
|
bindsym $mod+ctrl+Shift+v split v
|
||||||
|
|
||||||
# Container layout keybinds
|
# Container layout keybinds
|
||||||
bindsym $mod+s layout stacking
|
bindsym $mod+s layout stacking
|
||||||
@ -156,8 +158,8 @@ assign [class="porn"] $porn
|
|||||||
|
|
||||||
|
|
||||||
# Border size
|
# Border size
|
||||||
default_border pixel 3
|
default_border pixel 0
|
||||||
default_floating_border pixel 3
|
default_floating_border pixel 0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -173,4 +175,3 @@ client.urgent $urgent_color $urgent_color $urgent_color $urgent_color
|
|||||||
for_window [instance = "notes"] floating enable
|
for_window [instance = "notes"] floating enable
|
||||||
for_window [instance = "notes"] resize set 725 550
|
for_window [instance = "notes"] resize set 725 550
|
||||||
for_window [instance = "notes"] move scratchpad
|
for_window [instance = "notes"] move scratchpad
|
||||||
|
|
||||||
|
@ -37,8 +37,9 @@ end
|
|||||||
-- MISC
|
-- MISC
|
||||||
vim.cmd "colorscheme onedarker"
|
vim.cmd "colorscheme onedarker"
|
||||||
|
|
||||||
require("lualine").setup()
|
require("lualine").setup {
|
||||||
|
theme = "palenight"
|
||||||
|
}
|
||||||
|
|
||||||
-- AS
|
-- AS
|
||||||
require("autosave").setup({
|
require("autosave").setup({
|
||||||
@ -48,3 +49,7 @@ require("autosave").setup({
|
|||||||
|
|
||||||
-- Git signs
|
-- Git signs
|
||||||
require('gitsigns').setup()
|
require('gitsigns').setup()
|
||||||
|
|
||||||
|
-- tabline
|
||||||
|
require("bufferline").setup{}
|
||||||
|
require('nvim-web-devicons').setup{}
|
||||||
|
@ -50,3 +50,7 @@ set_keymap("n", "<leader>zc", "zc", opts)
|
|||||||
set_keymap("n", "<leader>zC", "zM", opts)
|
set_keymap("n", "<leader>zC", "zM", opts)
|
||||||
set_keymap("n", "<leader>za", "za", opts)
|
set_keymap("n", "<leader>za", "za", opts)
|
||||||
set_keymap("n", "<leader>zA", "zA", opts)
|
set_keymap("n", "<leader>zA", "zA", opts)
|
||||||
|
|
||||||
|
-- cmdline
|
||||||
|
set_keymap('n', ':', '<cmd>FineCmdline<CR>', opts)
|
||||||
|
set_keymap('n', '/', '<cmd>FineCmdline<CR>/', opts)
|
||||||
|
@ -12,10 +12,12 @@ vim.opt.expandtab = true -- Converts tabs to spaces
|
|||||||
vim.opt.cb = unnamedplus -- Clipboard
|
vim.opt.cb = unnamedplus -- Clipboard
|
||||||
vim.opt.mouse = "a" -- Mouse enable
|
vim.opt.mouse = "a" -- Mouse enable
|
||||||
vim.opt.fileencoding = "utf-8" -- File encoding
|
vim.opt.fileencoding = "utf-8" -- File encoding
|
||||||
vim.opt.showtabline = 2 -- The top tabs
|
vim.opt.showtabline = 0 -- The top tabs
|
||||||
vim.opt.cursorline = true -- Underline
|
vim.opt.cursorline = true -- Underline
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
vim.opt.undofile = true -- UNLIMITED UNDOS!!!
|
vim.opt.undofile = true -- UNLIMITED UNDOS!!!
|
||||||
|
vim.opt.ignorecase = true
|
||||||
|
vim.opt.smartcase = false
|
||||||
|
|
||||||
-- Folds
|
-- Folds
|
||||||
vim.opt.foldmethod = "expr"
|
vim.opt.foldmethod = "expr"
|
||||||
@ -38,4 +40,3 @@ vim.cmd "set foldexpr=nvim_treesitter#foldexpr()"
|
|||||||
--]])
|
--]])
|
||||||
|
|
||||||
vim.opt.foldlevel = 0
|
vim.opt.foldlevel = 0
|
||||||
|
|
||||||
|
@ -34,4 +34,14 @@ return require("packer").startup(function(use)
|
|||||||
})
|
})
|
||||||
|
|
||||||
use "lewis6991/gitsigns.nvim"
|
use "lewis6991/gitsigns.nvim"
|
||||||
|
|
||||||
|
use {
|
||||||
|
'VonHeikemen/fine-cmdline.nvim',
|
||||||
|
requires = {
|
||||||
|
{'MunifTanjim/nui.nvim'}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
use {'akinsho/bufferline.nvim', tag = "*", requires = 'nvim-tree/nvim-web-devicons'}
|
||||||
|
use {"nvim-tree/nvim-web-devicons"}
|
||||||
end)
|
end)
|
||||||
|
@ -84,11 +84,21 @@ _G.packer_plugins = {
|
|||||||
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/Onedarker.nvim",
|
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/Onedarker.nvim",
|
||||||
url = "https://github.com/LunarVim/Onedarker.nvim"
|
url = "https://github.com/LunarVim/Onedarker.nvim"
|
||||||
},
|
},
|
||||||
|
["bufferline.nvim"] = {
|
||||||
|
loaded = true,
|
||||||
|
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/bufferline.nvim",
|
||||||
|
url = "https://github.com/akinsho/bufferline.nvim"
|
||||||
|
},
|
||||||
["coc.nvim"] = {
|
["coc.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
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"
|
||||||
},
|
},
|
||||||
|
["fine-cmdline.nvim"] = {
|
||||||
|
loaded = true,
|
||||||
|
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/fine-cmdline.nvim",
|
||||||
|
url = "https://github.com/VonHeikemen/fine-cmdline.nvim"
|
||||||
|
},
|
||||||
["fold-preview.nvim"] = {
|
["fold-preview.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/fold-preview.nvim",
|
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/fold-preview.nvim",
|
||||||
@ -114,16 +124,20 @@ _G.packer_plugins = {
|
|||||||
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/markdown-preview.nvim",
|
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/markdown-preview.nvim",
|
||||||
url = "https://github.com/iamcco/markdown-preview.nvim"
|
url = "https://github.com/iamcco/markdown-preview.nvim"
|
||||||
},
|
},
|
||||||
|
["nui.nvim"] = {
|
||||||
|
loaded = true,
|
||||||
|
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/nui.nvim",
|
||||||
|
url = "https://github.com/MunifTanjim/nui.nvim"
|
||||||
|
},
|
||||||
["nvim-treesitter"] = {
|
["nvim-treesitter"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/nvim-treesitter",
|
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/nvim-treesitter",
|
||||||
url = "https://github.com/nvim-treesitter/nvim-treesitter"
|
url = "https://github.com/nvim-treesitter/nvim-treesitter"
|
||||||
},
|
},
|
||||||
["nvim-web-devicons"] = {
|
["nvim-web-devicons"] = {
|
||||||
loaded = false,
|
loaded = true,
|
||||||
needs_bufread = false,
|
path = "/home/kosh/.local/share/nvim/site/pack/packer/start/nvim-web-devicons",
|
||||||
path = "/home/kosh/.local/share/nvim/site/pack/packer/opt/nvim-web-devicons",
|
url = "https://github.com/nvim-tree/nvim-web-devicons"
|
||||||
url = "https://github.com/kyazdani42/nvim-web-devicons"
|
|
||||||
},
|
},
|
||||||
["plenary.nvim"] = {
|
["plenary.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
|
@ -19,8 +19,10 @@ blur-background-exclude = [
|
|||||||
"class_g = 'kitty'"
|
"class_g = 'kitty'"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
corner-radius = 50
|
||||||
|
|
||||||
# Fading
|
# Fading
|
||||||
fading=true;
|
fading=true;
|
||||||
fade-in-step=0.03;
|
fade-in-step=0.01;
|
||||||
fade-out-step=0.03;
|
fade-out-step=0.01;
|
||||||
fading-delta=1;
|
fading-delta=1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user