Major config changes
Add alacritty config, as it is my main terminal now Change **a lot** of nvim configs Add tmux configuration Update zsh configs Add .gitconfig with custom pager Include tmux-plugin-manager as a submodule
This commit is contained in:
parent
bb8a0eaec7
commit
90ca95ad38
23 changed files with 529 additions and 51 deletions
67
.config/nvim/lua/config/plugins/cmake-tools.lua
Normal file
67
.config/nvim/lua/config/plugins/cmake-tools.lua
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
require("cmake-tools").setup {
|
||||
cmake_command = "cmake", -- this is used to specify cmake command path
|
||||
cmake_regenerate_on_save = true, -- auto generate when save CMakeLists.txt
|
||||
cmake_generate_options = { "-DCMAKE_EXPORT_COMPILE_COMMANDS=1" }, -- this will be passed when invoke `CMakeGenerate`
|
||||
cmake_build_options = {}, -- this will be passed when invoke `CMakeBuild`
|
||||
-- support macro expansion:
|
||||
-- ${kit}
|
||||
-- ${kitGenerator}
|
||||
-- ${variant:xx}
|
||||
cmake_build_directory = "cmake-build-${variant:buildType}", -- this is used to specify generate directory for cmake, allows macro expansion
|
||||
cmake_soft_link_compile_commands = false, -- this will automatically make a soft link from compile commands file to project root dir
|
||||
cmake_compile_commands_from_lsp = false, -- this will automatically set compile commands file location using lsp, to use it, please set `cmake_soft_link_compile_commands` to false
|
||||
cmake_kits_path = nil, -- this is used to specify global cmake kits path, see CMakeKits for detailed usage
|
||||
cmake_variants_message = {
|
||||
short = { show = true }, -- whether to show short message
|
||||
long = { show = true, max_length = 40 }, -- whether to show long message
|
||||
},
|
||||
cmake_dap_configuration = { -- debug settings for cmake
|
||||
name = "cpp",
|
||||
type = "codelldb",
|
||||
request = "launch",
|
||||
stopOnEntry = false,
|
||||
runInTerminal = true,
|
||||
console = "integratedTerminal",
|
||||
},
|
||||
cmake_executor = { -- executor to use
|
||||
name = "quickfix", -- name of the executor
|
||||
opts = {}, -- the options the executor will get, possible values depend on the executor type. See `default_opts` for possible values.
|
||||
default_opts = { -- a list of default and possible values for executors
|
||||
quickfix = {
|
||||
show = "always", -- "always", "only_on_error"
|
||||
position = "belowright", -- "bottom", "top"
|
||||
size = 10,
|
||||
},
|
||||
overseer = {
|
||||
new_task_opts = {}, -- options to pass into the `overseer.new_task` command
|
||||
on_new_task = function(task) end, -- a function that gets overseer.Task when it is created, before calling `task:start`
|
||||
},
|
||||
terminal = {}, -- terminal executor uses the values in cmake_terminal
|
||||
},
|
||||
},
|
||||
cmake_terminal = {
|
||||
name = "terminal",
|
||||
opts = {
|
||||
name = "Main Terminal",
|
||||
prefix_name = "[CMakeTools]: ", -- This must be included and must be unique, otherwise the terminals will not work. Do not use a simple spacebar " ", or any generic name
|
||||
split_direction = "horizontal", -- "horizontal", "vertical"
|
||||
split_size = 11,
|
||||
|
||||
-- Window handling
|
||||
single_terminal_per_instance = true, -- Single viewport, multiple windows
|
||||
single_terminal_per_tab = true, -- Single viewport per tab
|
||||
keep_terminal_static_location = true, -- Static location of the viewport if avialable
|
||||
|
||||
-- Running Tasks
|
||||
start_insert_in_launch_task = false, -- If you want to enter terminal with :startinsert upon using :CMakeRun
|
||||
start_insert_in_other_tasks = false, -- If you want to enter terminal with :startinsert upon launching all other cmake tasks in the terminal. Generally set as false
|
||||
focus_on_main_terminal = false, -- Focus on cmake terminal when cmake task is launched. Only used if executor is terminal.
|
||||
focus_on_launch_terminal = false, -- Focus on cmake launch terminal when executable target in launched.
|
||||
},
|
||||
},
|
||||
cmake_notifications = {
|
||||
enabled = true, -- show cmake execution progress in nvim-notify
|
||||
spinner = { "⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏" }, -- icons used for progress display
|
||||
refresh_rate_ms = 100, -- how often to iterate icons
|
||||
},
|
||||
}
|
||||
9
.config/nvim/lua/config/plugins/comment.lua
Normal file
9
.config/nvim/lua/config/plugins/comment.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
local map = vim.keymap.set
|
||||
|
||||
map('n', '<C-_>', require('Comment.api').toggle.linewise.current)
|
||||
map('i', '<C-_>', require('Comment.api').toggle.linewise.current)
|
||||
map('x', '<C-_>', function()
|
||||
vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes('<ESC>', true, false, true), 'nx', false)
|
||||
require('Comment.api').toggle.linewise(vim.fn.visualmode())
|
||||
end
|
||||
)
|
||||
|
|
@ -1,6 +1,9 @@
|
|||
require("config.plugins.lualine")
|
||||
require("config.plugins.nvim-autopairs")
|
||||
require("config.plugins.nvim-cmp")
|
||||
require("config.plugins.nvim-tree")
|
||||
require("config.plugins.telescope")
|
||||
require("config.plugins.treesitter")
|
||||
require('config.plugins.cmake-tools')
|
||||
require('config.plugins.comment')
|
||||
require('config.plugins.lualine')
|
||||
require('config.plugins.nvim-autopairs')
|
||||
require('config.plugins.nvim-cmp')
|
||||
require('config.plugins.nvim-tree')
|
||||
require('config.plugins.telescope')
|
||||
require('config.plugins.treesitter')
|
||||
require('config.plugins.navigator')
|
||||
|
|
|
|||
8
.config/nvim/lua/config/plugins/navigator.lua
Normal file
8
.config/nvim/lua/config/plugins/navigator.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
require('Navigator').setup()
|
||||
|
||||
local map = vim.keymap.set
|
||||
|
||||
map('n', '<A-h>', function () require("Navigator").left() end)
|
||||
map('n', '<A-j>', function () require("Navigator").down() end)
|
||||
map('n', '<A-k>', function () require("Navigator").up() end)
|
||||
map('n', '<A-l>', function () require("Navigator").right() end)
|
||||
|
|
@ -1,3 +1,6 @@
|
|||
vim.g.loaded_netrw = 1
|
||||
vim.g.loaded_netrwPlugin = 1
|
||||
|
||||
require("nvim-tree").setup()
|
||||
|
||||
vim.keymap.set('n', '<C-b>', ':NvimTreeToggle<CR>')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue