tmux intergration
This commit is contained in:
parent
044b0fde49
commit
1063c20b6c
@ -6,7 +6,7 @@
|
|||||||
- https://github.com/nvim-telescope/telescope.nvim (fuzzy finder)
|
- https://github.com/nvim-telescope/telescope.nvim (fuzzy finder)
|
||||||
- https://github.com/nvim-treesitter/nvim-treesitter (tree sitter plugin old)
|
- https://github.com/nvim-treesitter/nvim-treesitter (tree sitter plugin old)
|
||||||
- https://github.com/nvim-neo-tree/neo-tree.nvim (map of filesystem)
|
- https://github.com/nvim-neo-tree/neo-tree.nvim (map of filesystem)
|
||||||
|
- https://github.com/christoomey/vim-tmux-navigator (tmux integration)
|
||||||
|
|
||||||
#### Old plugins
|
#### Old plugins
|
||||||
- https://github.com/catppuccin/nvim?tab=readme-ov-file (colour scheme)
|
- https://github.com/catppuccin/nvim?tab=readme-ov-file (colour scheme)
|
||||||
|
|||||||
6
init.lua
6
init.lua
@ -41,7 +41,11 @@ vim.cmd.colorscheme "everforest"
|
|||||||
--require("catppuccin").setup(plugins, opts) -- color scheme --
|
--require("catppuccin").setup(plugins, opts) -- color scheme --
|
||||||
--schemevim.cmd.colorscheme "catppuccin"
|
--schemevim.cmd.colorscheme "catppuccin"
|
||||||
|
|
||||||
require('lualine').setup() -- bottom line
|
require('lualine').setup{
|
||||||
|
options = {
|
||||||
|
globalstatus = true,
|
||||||
|
}
|
||||||
|
} -- bottom line
|
||||||
|
|
||||||
-- Keypams --
|
-- Keypams --
|
||||||
|
|
||||||
|
|||||||
@ -8,5 +8,6 @@
|
|||||||
"nvim-treesitter": { "branch": "master", "commit": "3e10cffbb2a022cd8e2aaea9f4fffb514065e77c" },
|
"nvim-treesitter": { "branch": "master", "commit": "3e10cffbb2a022cd8e2aaea9f4fffb514065e77c" },
|
||||||
"nvim-web-devicons": { "branch": "master", "commit": "b3468391470034353f0e5110c70babb5c62967d3" },
|
"nvim-web-devicons": { "branch": "master", "commit": "b3468391470034353f0e5110c70babb5c62967d3" },
|
||||||
"plenary.nvim": { "branch": "master", "commit": "8aad4396840be7fc42896e3011751b7609ca4119" },
|
"plenary.nvim": { "branch": "master", "commit": "8aad4396840be7fc42896e3011751b7609ca4119" },
|
||||||
"telescope.nvim": { "branch": "master", "commit": "6312868392331c9c0f22725041f1ec2bef57c751" }
|
"telescope.nvim": { "branch": "master", "commit": "6312868392331c9c0f22725041f1ec2bef57c751" },
|
||||||
|
"vim-tmux-navigator": { "branch": "master", "commit": "a26954a585b02a2ac02f87145e204f8798a7cbc2" }
|
||||||
}
|
}
|
||||||
@ -19,4 +19,5 @@ return {
|
|||||||
{'nvim-lualine/lualine.nvim', -- bottom/status line
|
{'nvim-lualine/lualine.nvim', -- bottom/status line
|
||||||
dependencies = { 'nvim-tree/nvim-web-devicons' }}
|
dependencies = { 'nvim-tree/nvim-web-devicons' }}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -7,3 +7,12 @@ vim.opt.softtabstop = 4
|
|||||||
vim.opt.shiftwidth = 4
|
vim.opt.shiftwidth = 4
|
||||||
|
|
||||||
vim.g.napleader = " "
|
vim.g.napleader = " "
|
||||||
|
|
||||||
|
-- Navigate vim panels better tmux
|
||||||
|
|
||||||
|
--vim.keymap.set('n', '<C-h>', ':wincmd k<CR>')
|
||||||
|
--vim.keymap.set('n', '<C-j>', ':wincmd j<CR>')
|
||||||
|
--vim.keymap.set('n', '<C-k>', ':wincmd h<CR>')
|
||||||
|
--vim.keymap.set('n', '<C-l>', ':wincmd l<CR>')
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user