tmux intergration

This commit is contained in:
godot 2024-04-18 15:18:43 +02:00
parent 044b0fde49
commit 1063c20b6c
5 changed files with 18 additions and 3 deletions

View File

@ -6,7 +6,7 @@
- https://github.com/nvim-telescope/telescope.nvim (fuzzy finder)
- 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/christoomey/vim-tmux-navigator (tmux integration)
#### Old plugins
- https://github.com/catppuccin/nvim?tab=readme-ov-file (colour scheme)

View File

@ -41,7 +41,11 @@ vim.cmd.colorscheme "everforest"
--require("catppuccin").setup(plugins, opts) -- color scheme --
--schemevim.cmd.colorscheme "catppuccin"
require('lualine').setup() -- bottom line
require('lualine').setup{
options = {
globalstatus = true,
}
} -- bottom line
-- Keypams --

View File

@ -8,5 +8,6 @@
"nvim-treesitter": { "branch": "master", "commit": "3e10cffbb2a022cd8e2aaea9f4fffb514065e77c" },
"nvim-web-devicons": { "branch": "master", "commit": "b3468391470034353f0e5110c70babb5c62967d3" },
"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" }
}

View File

@ -19,4 +19,5 @@ return {
{'nvim-lualine/lualine.nvim', -- bottom/status line
dependencies = { 'nvim-tree/nvim-web-devicons' }}
}

View File

@ -7,3 +7,12 @@ vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
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>')