Compare commits
2 commits
0f5d98e657
...
d229f4924c
Author | SHA1 | Date | |
---|---|---|---|
![]() |
d229f4924c | ||
![]() |
63a0fe64da |
2 changed files with 13 additions and 5 deletions
|
@ -26,7 +26,7 @@
|
||||||
neoformat
|
neoformat
|
||||||
|
|
||||||
# Colorscheme
|
# Colorscheme
|
||||||
papercolor-theme
|
monokai-pro-nvim
|
||||||
|
|
||||||
# Filebrowser
|
# Filebrowser
|
||||||
nvim-tree-lua
|
nvim-tree-lua
|
||||||
|
@ -67,9 +67,6 @@
|
||||||
# Session management
|
# Session management
|
||||||
auto-session
|
auto-session
|
||||||
|
|
||||||
# zoom into windows
|
|
||||||
zoomwintab-vim
|
|
||||||
|
|
||||||
# Telescope
|
# Telescope
|
||||||
plenary-nvim
|
plenary-nvim
|
||||||
telescope-nvim
|
telescope-nvim
|
||||||
|
@ -79,6 +76,9 @@
|
||||||
|
|
||||||
# Add/change surrounding characters
|
# Add/change surrounding characters
|
||||||
nvim-surround
|
nvim-surround
|
||||||
|
|
||||||
|
# better undo history
|
||||||
|
undotree
|
||||||
];
|
];
|
||||||
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
|
@ -88,7 +88,7 @@
|
||||||
set background=dark
|
set background=dark
|
||||||
set number
|
set number
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
colorscheme PaperColor
|
colorscheme monokai-pro-octagon
|
||||||
set hlsearch
|
set hlsearch
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
set shiftwidth=4
|
set shiftwidth=4
|
||||||
|
@ -115,6 +115,10 @@
|
||||||
nnoremap <silent><cr> :nohlsearch<CR>
|
nnoremap <silent><cr> :nohlsearch<CR>
|
||||||
inoremap jj <Esc>
|
inoremap jj <Esc>
|
||||||
|
|
||||||
|
nnoremap <leader>n :NvimTreeToggle<CR>
|
||||||
|
|
||||||
|
nnoremap <leader>u :UndotreeToggle<CR>
|
||||||
|
|
||||||
" Faster tab switching
|
" Faster tab switching
|
||||||
map <Tab> :bnext<cr>
|
map <Tab> :bnext<cr>
|
||||||
map <S-Tab> :bprevious<cr>
|
map <S-Tab> :bprevious<cr>
|
||||||
|
@ -192,6 +196,9 @@
|
||||||
auto_restore_enabled = true;
|
auto_restore_enabled = true;
|
||||||
}
|
}
|
||||||
require("bufferline").setup{}
|
require("bufferline").setup{}
|
||||||
|
|
||||||
|
vim.g.loaded_netrw = 1
|
||||||
|
vim.g.loaded_netrwPlugin = 1
|
||||||
require("nvim-tree").setup()
|
require("nvim-tree").setup()
|
||||||
|
|
||||||
require('lspconfig').gopls.setup{}
|
require('lspconfig').gopls.setup{}
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
"cat" = "bat --theme=TwoDark --style=plain";
|
"cat" = "bat --theme=TwoDark --style=plain";
|
||||||
"watch" = "watch "; # https://unix.stackexchange.com/a/25329
|
"watch" = "watch "; # https://unix.stackexchange.com/a/25329
|
||||||
"kge" = "kubectl get events --sort-by='.lastTimestamp'";
|
"kge" = "kubectl get events --sort-by='.lastTimestamp'";
|
||||||
|
"devcontainer" = "docker compose -f docker-compose.yml -f .devcontainer/docker-compose.yml"; # Poor mans devcontainer
|
||||||
};
|
};
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
setopt APPEND_HISTORY # Append history to global histfile on exit
|
setopt APPEND_HISTORY # Append history to global histfile on exit
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue