Colors
This commit is contained in:
parent
06f22de2ca
commit
a4c6142e3a
3 changed files with 17 additions and 7 deletions
2
bashrc
2
bashrc
|
|
@ -24,4 +24,4 @@ export PYTHONSTARTUP=.python_startup.py
|
|||
eval "$(~/.rbenv/bin/rbenv init - bash)"
|
||||
alias vim=nvim
|
||||
export EDITOR=nvim
|
||||
|
||||
export TERM='xterm-256color'
|
||||
|
|
|
|||
15
init.lua
15
init.lua
|
|
@ -13,7 +13,6 @@ vim.opt.rtp:prepend(lazypath)
|
|||
|
||||
require("lazy").setup({
|
||||
{ "NeogitOrg/neogit", dependencies = "nvim-lua/plenary.nvim" },
|
||||
"wbthomason/packer.nvim",
|
||||
"lewis6991/fileline.nvim",
|
||||
"mfussenegger/nvim-dap",
|
||||
{
|
||||
|
|
@ -53,7 +52,6 @@ require("lazy").setup({
|
|||
require("nvim-tree").setup({})
|
||||
end,
|
||||
},
|
||||
|
||||
"hrsh7th/nvim-cmp",
|
||||
"hrsh7th/cmp-nvim-lsp",
|
||||
"hrsh7th/cmp-nvim-lsp-signature-help",
|
||||
|
|
@ -65,7 +63,13 @@ require("lazy").setup({
|
|||
"nvim-lua/popup.nvim",
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-telescope/telescope.nvim",
|
||||
"rebelot/kanagawa.nvim",
|
||||
{
|
||||
"folke/tokyonight.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
opts = {},
|
||||
},
|
||||
"nvim-lualine/lualine.nvim",
|
||||
})
|
||||
|
||||
-- Vim options
|
||||
|
|
@ -75,7 +79,7 @@ vim.g.mapleader = ","
|
|||
vim.wo.signcolumn = "yes" -- prevents jitter
|
||||
vim.opt.updatetime = 100
|
||||
vim.o.background = "dark" -- or "light" for light mode
|
||||
vim.cmd([[colorscheme kanagawa]])
|
||||
vim.cmd([[colorscheme tokyonight]])
|
||||
-- Set completeopt to have a better completion experience
|
||||
-- :help completeopt
|
||||
-- menuone: popup even when there's only one match
|
||||
|
|
@ -251,3 +255,6 @@ null_ls.setup({
|
|||
|
||||
-- Scroll bar
|
||||
require("scrollbar").setup()
|
||||
|
||||
-- Status line
|
||||
require("lualine").setup()
|
||||
|
|
|
|||
|
|
@ -15,7 +15,10 @@ set -g @tmux-gruvbox 'dark'
|
|||
# set -g @plugin 'git@github.com:user/plugin'
|
||||
# set -g @plugin 'git@bitbucket.com:user/plugin'
|
||||
|
||||
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
||||
run '~/.tmux/plugins/tpm/tpm'
|
||||
|
||||
bind r source-file ~/.tmux.conf
|
||||
|
||||
set -ga terminal-overrides ",xterm-256color:Tc"
|
||||
|
||||
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
||||
run '~/.tmux/plugins/tpm/tpm'
|
||||
|
|
|
|||
Loading…
Reference in a new issue